Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93882 贾雨泽 05拆分时间 C++ Accepted 1 MS 276 KB 219 2024-10-19 14:50:14

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int s,a,b,c,n; cin>>s; a = s/3600; n = s%3600; b = n/60; c = s-a*3600-b*60; cout<<a<<" "; cout<<b<<" "; cout<<c<<" "; }