Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131554 罗晟睿 05拆分时间 C++ Accepted 1 MS 272 KB 189 2025-09-27 15:30:45

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int m,xs,fz,ms; cin>>m; xs=m/3600; fz=m%3600/60; ms=m%60; printf ("%d %d %d",xs,fz,ms); return 0;}