Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
109604 | 罗安博 | 05拆分时间 | C++ | Wrong Answer | 1 MS | 276 KB | 154 | 2025-02-09 16:16:02 |
#include<bits/stdc++.h> using namespace std; int main(){ long long a; cin>>a; cout<<a/3600<<endl; cout<<a/3600/60<<endl; cout<<a%60; return 0; }
------Input------
602
------Answer-----
0 10 2
------Your output-----
0 0 2