Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1769 邓程允 05拆分时间 C++ Accepted 0 MS 216 KB 253 2023-11-05 10:29:12

Tests(10/10):


Code:

# include<cstdio> using namespace std; int main(){ long long x,a,b,c; scanf("%lld",&x); a=x/3600; b=(x-a*3600)/60; c=x-a*3600-b*60; printf("%lld\n",a); printf("%lld\n",b); printf("%lld\n",c); return 0; }