Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89153 | 欧阳俊懿 | 05交换数据 | C++ | Wrong Answer | 1 MS | 276 KB | 164 | 2024-08-22 16:42:36 |
#include<iostream> using namespace std; int main() { int s; cin>>s; int h,m; h=s/3600; m=(s-h*3600)/60; s=s%60; cout<<h<<" "<<m<<" "<<s; return 0; }
------Input------
29 42
------Answer-----
42 29
------Your output-----
0 0 29