Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146994 赵奕杰 05拆分时间 C++ Accepted 0 MS 272 KB 140 2026-02-01 20:29:11

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int s; int main(){ cin>>s; cout<<s/3600<<" "<<s%3600/60<<" "<<s%3600%60; return 0; }