Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89274 刘佳宇 05拆分时间 C++ Accepted 1 MS 272 KB 181 2024-08-23 14:22:57

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; }