結果

問題 No.651 E869120 and Driving
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-25 14:57:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 87,060 KB
実行使用メモリ 71,652 KB
最終ジャッジ日時 2023-09-18 23:02:35
合計ジャッジ時間 1,826 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,568 KB
testcase_01 AC 70 ms
71,128 KB
testcase_02 AC 71 ms
71,652 KB
testcase_03 AC 70 ms
71,112 KB
testcase_04 AC 68 ms
71,304 KB
testcase_05 AC 67 ms
71,324 KB
testcase_06 AC 70 ms
71,636 KB
testcase_07 AC 68 ms
71,568 KB
testcase_08 AC 68 ms
71,436 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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