結果
| 問題 | No.651 E869120 and Driving |
| コンテスト | |
| ユーザー |
crize
|
| 提出日時 | 2018-07-12 11:02:51 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 95 ms / 1,000 ms |
| + 908µs | |
| コード長 | 284 bytes |
| 記録 | |
| コンパイル時間 | 289 ms |
| コンパイル使用メモリ | 21,212 KB |
| 実行使用メモリ | 15,808 KB |
| 最終ジャッジ日時 | 2026-09-02 08:51:00 |
| 合計ジャッジ時間 | 2,341 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
a=int(input())
time=[10,0]
time[1]=a/(100/60)
while time[1]>=60:
time[1]=time[1]-60
time[0]=time[0]+1
if time[0]>=24:
time[0]=time[0]-24
if time[1]<10:
answer=str(time[0])+":0"+str(int(time[1]))
else:
answer=str(time[0])+":"+str(int(time[1]))
print(answer)
crize