Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133989 余建成 05拆分时间 C++ Accepted 1 MS 276 KB 197 2025-10-25 12:22:53

Tests(10/10):


Code:

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