Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
99846 钱恩浩 05拆分时间 C++ Accepted 1 MS 272 KB 202 2024-11-30 19:00:02

Tests(10/10):


Code:

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