Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
116878 周博涵 05拆分时间 C++ Accepted 1 MS 272 KB 186 2025-04-12 18:09:12

Tests(10/10):


Code:

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