結果
問題 | No.651 E869120 and Driving |
ユーザー | focus |
提出日時 | 2018-02-23 23:48:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 301 bytes |
コンパイル時間 | 564 ms |
コンパイル使用メモリ | 69,688 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 08:54:48 |
合計ジャッジ時間 | 1,040 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
#include<iostream> #include<cmath> #include<algorithm> using namespace std; int main(){ int a,h=10,t=0; cin >> a; a = a*60/100; t += (a%60); h += (a/60); h = h % 24; cout << h << ':'; if(t<10) cout << '0' << t << endl; else cout << t << endl; return 0; }