Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
101687 李泽宜 05拆分时间 C++ Accepted 1 MS 272 KB 147 2024-12-15 19:10:53

Tests(10/10):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int s; cin>>s; cout<<s/3600<<" "<<(s%3600)/60<<" "<<s%60<<endl; return 0; }