Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130423 鄢晨曦 05拆分时间 C++ Accepted 3 MS 276 KB 185 2025-09-13 14:58:49

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d; cin>>a; b=a/3600; c=a%3600/60; d=a%60; cout<<b<<" "<<c<<" "<<d<<endl; return 0; }