結果
| 問題 | No.651 E869120 and Driving |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-05-07 17:49:49 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 69 ms / 1,000 ms |
| + 40µs | |
| コード長 | 237 bytes |
| 記録 | |
| コンパイル時間 | 274 ms |
| コンパイル使用メモリ | 96,104 KB |
| 実行使用メモリ | 78,976 KB |
| 最終ジャッジ日時 | 2026-08-27 19:09:14 |
| 合計ジャッジ時間 | 2,420 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
a = int(input()) time = (10*60 + a*60//100)%1440 h = "0" + str(time//60) if len(str(time//60)) == 1 else str(time//60) m = "0" + str(time - time//60*60) if len(str(time - time//60*60)) == 1 else str(time - time//60*60) print(h+":"+m)