Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89155 | 欧阳俊懿 | 05字符的变化 | C++ | Wrong Answer | 0 MS | 276 KB | 164 | 2024-08-22 16:48:55 |
#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------
X
------Answer-----
272
------Your output-----
0 0 0