Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95707 陈铎文 05拆分时间 C++ Accepted 1 MS 272 KB 186 2024-11-02 09:52:46

Tests(10/10):


Code:

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