結果

問題 No.651 E869120 and Driving
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-25 15:01:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 100 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 87,280 KB
実行使用メモリ 71,500 KB
最終ジャッジ日時 2023-09-18 23:02:37
合計ジャッジ時間 1,735 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,264 KB
testcase_01 AC 68 ms
71,264 KB
testcase_02 AC 69 ms
71,264 KB
testcase_03 AC 70 ms
71,472 KB
testcase_04 AC 68 ms
71,500 KB
testcase_05 AC 69 ms
71,120 KB
testcase_06 AC 70 ms
71,116 KB
testcase_07 AC 71 ms
71,440 KB
testcase_08 AC 70 ms
71,420 KB
testcase_09 AC 69 ms
71,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = round(a / 100 * 60)
print(str(10+b//60) + ":",end="")
print(str(b%60).zfill(2))
0