Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144121 邓弘锐 05拆分时间 C++ Accepted 1 MS 276 KB 173 2026-01-19 15:12:56

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int x,a,b,c; cin>>x; a=x/3600; b=x%3600/60; c=x%3600%60; printf("%d %d %d",a,b,c); return 0; }