結果
| 問題 | No.651 E869120 and Driving |
| コンテスト | |
| ユーザー |
zbxah
|
| 提出日時 | 2018-02-28 10:23:35 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 93 ms / 1,000 ms |
| + 414µs | |
| コード長 | 208 bytes |
| 記録 | |
| コンパイル時間 | 292 ms |
| コンパイル使用メモリ | 21,216 KB |
| 実行使用メモリ | 15,660 KB |
| 最終ジャッジ日時 | 2026-09-02 08:44:20 |
| 合計ジャッジ時間 | 2,278 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
from datetime import datetime, timedelta
a = int(input())
time = datetime(2000, 1, 1, 10, 0, 0) + timedelta(minutes=0.6 * a)
if time.second > 0:
time += timedelta(minutes=1)
print(time.strftime('%H:%M'))
zbxah