Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89277 蔡佳轩 05拆分时间 C++ Accepted 1 MS 280 KB 172 2024-08-23 14:23:27

Tests(10/10):


Code:

#include <iostream> using namespace std; int main(){ int x,s,f,a; cin>>x; s = x/3600; f = (x%3600)/60; a = x%60; cout<<s<<' '<<f<<' '<<a; }