結果

問題 No.651 E869120 and Driving
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-02-23 22:22:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 116 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 53,744 KB
最終ジャッジ日時 2024-09-22 08:50:12
合計ジャッジ時間 1,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,528 KB
testcase_01 AC 39 ms
52,300 KB
testcase_02 AC 37 ms
52,976 KB
testcase_03 AC 36 ms
53,236 KB
testcase_04 AC 37 ms
53,744 KB
testcase_05 AC 36 ms
51,944 KB
testcase_06 AC 36 ms
52,216 KB
testcase_07 AC 37 ms
52,052 KB
testcase_08 AC 37 ms
53,088 KB
testcase_09 AC 36 ms
52,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input()) // 10
m = a * 6
p = str(m % 60)
if len(p) == 1:
    p = '0' + p
print(str(10 + m // 60) + ":" + p)
0