結果

問題 No.525 二度寝の季節
ユーザー kohei2019kohei2019
提出日時 2022-02-06 17:21:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 169 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 86,924 KB
実行使用メモリ 71,580 KB
最終ジャッジ日時 2023-09-02 07:02:03
合計ジャッジ時間 4,792 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,320 KB
testcase_01 AC 75 ms
71,392 KB
testcase_02 AC 70 ms
71,520 KB
testcase_03 AC 69 ms
71,540 KB
testcase_04 AC 69 ms
71,284 KB
testcase_05 AC 71 ms
71,508 KB
testcase_06 AC 70 ms
71,528 KB
testcase_07 AC 69 ms
71,416 KB
testcase_08 AC 69 ms
71,344 KB
testcase_09 AC 72 ms
71,416 KB
testcase_10 AC 70 ms
71,472 KB
testcase_11 AC 71 ms
71,428 KB
testcase_12 AC 70 ms
71,436 KB
testcase_13 AC 70 ms
71,172 KB
testcase_14 AC 71 ms
71,476 KB
testcase_15 AC 70 ms
71,192 KB
testcase_16 AC 70 ms
71,244 KB
testcase_17 AC 72 ms
71,488 KB
testcase_18 AC 71 ms
71,280 KB
testcase_19 AC 72 ms
71,028 KB
testcase_20 AC 72 ms
71,464 KB
testcase_21 AC 71 ms
71,296 KB
testcase_22 AC 72 ms
71,328 KB
testcase_23 AC 71 ms
71,384 KB
testcase_24 AC 72 ms
71,416 KB
testcase_25 AC 71 ms
71,292 KB
testcase_26 AC 70 ms
71,072 KB
testcase_27 AC 72 ms
71,288 KB
testcase_28 AC 70 ms
71,068 KB
testcase_29 AC 71 ms
71,400 KB
testcase_30 AC 70 ms
71,364 KB
testcase_31 AC 69 ms
71,128 KB
testcase_32 AC 71 ms
71,392 KB
testcase_33 AC 69 ms
71,284 KB
testcase_34 AC 70 ms
71,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

hh,mm = map(int,input().split(':'))

mm += 5
hh += mm // 60
hh %= 24
mm %= 60

hh = str(hh)
hh = '0'*(2-len(hh))+hh
mm = str(mm)
mm = '0'*(2-len(mm))+mm
print(hh+':'+mm)
0