Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130422 李昱龙 05拆分时间 C++ Accepted 1 MS 276 KB 160 2025-09-13 14:56:41

Tests(10/10):


Code:

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