| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130420 | 李昱龙 | 05拆分时间 | C++ | Wrong Answer | 1 MS | 276 KB | 153 | 2025-09-13 14:50:47 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; cout<<n/3600<<" "<<(n-3600)/60<<" "<<(n-3600)/60/1; return 0; }
------Input------
602
------Answer-----
0 10 2
------Your output-----
0 -49 -49