結果

問題 No.525 二度寝の季節
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-23 15:44:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 100 bytes
コンパイル時間 3,654 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 53,564 KB
最終ジャッジ日時 2024-09-23 15:47:32
合計ジャッジ時間 9,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,908 KB
testcase_01 AC 32 ms
52,260 KB
testcase_02 AC 32 ms
52,024 KB
testcase_03 AC 33 ms
52,608 KB
testcase_04 AC 32 ms
51,960 KB
testcase_05 AC 32 ms
51,868 KB
testcase_06 AC 31 ms
53,024 KB
testcase_07 AC 57 ms
52,548 KB
testcase_08 AC 32 ms
52,396 KB
testcase_09 AC 32 ms
51,912 KB
testcase_10 AC 32 ms
52,128 KB
testcase_11 AC 33 ms
52,824 KB
testcase_12 AC 31 ms
52,200 KB
testcase_13 AC 32 ms
53,076 KB
testcase_14 AC 31 ms
52,756 KB
testcase_15 AC 31 ms
52,692 KB
testcase_16 AC 32 ms
52,316 KB
testcase_17 AC 32 ms
52,756 KB
testcase_18 AC 32 ms
52,172 KB
testcase_19 AC 31 ms
52,564 KB
testcase_20 AC 31 ms
52,664 KB
testcase_21 AC 30 ms
53,564 KB
testcase_22 AC 31 ms
52,784 KB
testcase_23 AC 32 ms
52,192 KB
testcase_24 AC 31 ms
52,800 KB
testcase_25 AC 31 ms
53,096 KB
testcase_26 AC 32 ms
52,596 KB
testcase_27 AC 32 ms
52,632 KB
testcase_28 AC 31 ms
52,136 KB
testcase_29 AC 31 ms
52,628 KB
testcase_30 AC 33 ms
52,416 KB
testcase_31 AC 33 ms
53,152 KB
testcase_32 AC 32 ms
51,880 KB
testcase_33 AC 33 ms
52,076 KB
testcase_34 AC 35 ms
52,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,m=map(int,input().split(":"))
m+=5
h+=m//60
h%=24
m%=60
print(str(h).zfill(2)+":"+str(m).zfill(2))
0