Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93886 | 李浩宇 | 05拆分时间 | C++ | Wrong Answer | 0 MS | 280 KB | 163 | 2024-10-19 14:52:05 |
#include<iostream> using namespace std; int main(){ int n,xs,fz,m; cin>>n; xs = n/3600; n = n%3600; fz = n/60; m = n%60; cout<<xs<<fz<<m; }
------Input------
602
------Answer-----
0 10 2
------Your output-----
0102