Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2334 | 邓小龙 | 05拆分时间 | C++ | Accepted | 0 MS | 268 KB | 230 | 2023-12-23 18:42:11 |
#include<iostream> #include<cstdio> using namespace std; int main(){ double s,m,h; cin>>s; h=(long long)(s/3600); m=(long long)s%3600/60; s=s-h*3600-m*60; cout<<h<<" "<<m<<" "<<s; return 0; }