Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89267 王煜鑫 05拆分时间 C++ Accepted 1 MS 268 KB 177 2024-08-23 14:17:56

Tests(10/10):


Code:

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