結果

問題 No.651 E869120 and Driving
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-25 14:57:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 53,956 KB
最終ジャッジ日時 2024-07-05 12:05:47
合計ジャッジ時間 1,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,828 KB
testcase_01 AC 36 ms
51,624 KB
testcase_02 AC 36 ms
53,028 KB
testcase_03 AC 37 ms
52,212 KB
testcase_04 AC 36 ms
51,728 KB
testcase_05 AC 36 ms
53,160 KB
testcase_06 AC 40 ms
51,688 KB
testcase_07 AC 37 ms
52,440 KB
testcase_08 AC 38 ms
52,564 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