Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95429 陈骏睿 05拆分时间 C++ Accepted 1 MS 272 KB 193 2024-10-27 15:53:17

Tests(10/10):


Code:

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