結果

問題 No.651 E869120 and Driving
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-25 15:01:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 1,000 ms
コード長 100 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 53,096 KB
最終ジャッジ日時 2024-07-05 12:05:49
合計ジャッジ時間 894 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,096 KB
testcase_01 AC 34 ms
52,016 KB
testcase_02 AC 33 ms
52,172 KB
testcase_03 AC 32 ms
53,084 KB
testcase_04 AC 31 ms
52,628 KB
testcase_05 AC 31 ms
51,812 KB
testcase_06 AC 31 ms
51,952 KB
testcase_07 AC 30 ms
52,244 KB
testcase_08 AC 31 ms
51,676 KB
testcase_09 AC 30 ms
51,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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