Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
101452 李朋秦 05拆分时间 C++ Accepted 1 MS 272 KB 212 2024-12-15 12:35:03

Tests(10/10):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b,c; int s; cin>>s; a=s/3600; b=(s-a*3600)/60; c=s%60; cout<<a<<" "<<b<<" "<< c; return 0; }