Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116872 | 张暄浩 | 05拆分时间 | C++ | Wrong Answer | 0 MS | 264 KB | 163 | 2025-04-12 18:03:35 |
#include<iostream> #include<cstdio> using namespace std; int main(){ int h,m,x; cin>>h>>m>>x; h=x/3600; m=(x-h*3600)/60; return 0; }
------Input------
602
------Answer-----
0 10 2
------Your output-----