結果

問題 No.651 E869120 and Driving
ユーザー otsunekootsuneko
提出日時 2021-05-07 17:49:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 237 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 87,244 KB
実行使用メモリ 71,532 KB
最終ジャッジ日時 2023-10-13 09:02:05
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,224 KB
testcase_01 AC 71 ms
71,464 KB
testcase_02 AC 72 ms
71,004 KB
testcase_03 AC 70 ms
71,312 KB
testcase_04 AC 72 ms
71,348 KB
testcase_05 AC 71 ms
71,192 KB
testcase_06 AC 71 ms
71,276 KB
testcase_07 AC 71 ms
71,532 KB
testcase_08 AC 71 ms
71,368 KB
testcase_09 AC 70 ms
71,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0