結果
| 問題 | No.651 E869120 and Driving |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-03-02 22:32:44 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 645 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 20,700 KB |
| 最終ジャッジ日時 | 2026-03-06 00:00:43 |
| 合計ジャッジ時間 | 3,029 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 5 RE * 2 |
ソースコード
x = int(input())
time = float(x / 100) * 60
h = int(time / 60)
m = int(time % (h * 60))
print(str(10+h)+':'+'{0:02d}'.format(m))