Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
3877 刘芃伽 05拆分时间 C++ Accepted 0 MS 256 KB 195 2024-07-16 14:28:48

Tests(10/10):


Code:

# include<iostream> using namespace std; int main() { int x; cin>>x; int h,m,s; h=x/3600; m=x/60%60; s=x%60; cout<<h<<" "<<m<<" "<<s<<endl; return 0; }