Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1849 林子杰 05拆分时间 C++ Accepted 0 MS 268 KB 143 2023-11-12 11:04:24

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int s; cin>>s; cout<<s/3600<<' '<<s/60<<' '<<s%60<<endl; return 0; }