Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
5871 | 李伟和 | 时间换算 | C++ | Wrong Answer | 5 MS | 256 KB | 253 | 2024-12-20 19:05:17 |
#include <bits/stdc++.h> using namespace std; int main() { int m; double s,t,z; cin>>m; s=m/3600; t=m/86400; z=m/604800; cout<<s<<"hour"<<endl; cout<<t<<"day"<<endl; cout<<z<<"week"<<endl; return 0; }
------Input------
963852741
------Answer-----
4.11hour 0.17day 0.02week
------Your output-----
267736hour 11155day 1593week