結果

問題 No.525 二度寝の季節
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2021-02-03 15:02:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 106 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 71,376 KB
最終ジャッジ日時 2023-09-12 13:02:44
合計ジャッジ時間 4,877 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,280 KB
testcase_01 AC 71 ms
71,064 KB
testcase_02 AC 70 ms
70,844 KB
testcase_03 AC 70 ms
71,060 KB
testcase_04 AC 71 ms
71,360 KB
testcase_05 AC 70 ms
71,192 KB
testcase_06 AC 71 ms
71,124 KB
testcase_07 AC 72 ms
71,316 KB
testcase_08 AC 70 ms
71,360 KB
testcase_09 AC 71 ms
71,120 KB
testcase_10 AC 71 ms
70,952 KB
testcase_11 AC 70 ms
70,952 KB
testcase_12 AC 71 ms
70,728 KB
testcase_13 AC 70 ms
71,048 KB
testcase_14 AC 69 ms
70,816 KB
testcase_15 AC 71 ms
70,704 KB
testcase_16 AC 72 ms
71,120 KB
testcase_17 AC 71 ms
70,812 KB
testcase_18 AC 70 ms
70,952 KB
testcase_19 AC 70 ms
70,896 KB
testcase_20 AC 71 ms
70,980 KB
testcase_21 AC 70 ms
70,840 KB
testcase_22 AC 70 ms
71,064 KB
testcase_23 AC 70 ms
70,880 KB
testcase_24 AC 70 ms
71,376 KB
testcase_25 AC 71 ms
71,012 KB
testcase_26 AC 71 ms
71,364 KB
testcase_27 AC 71 ms
71,116 KB
testcase_28 AC 70 ms
70,724 KB
testcase_29 AC 70 ms
71,068 KB
testcase_30 AC 70 ms
71,268 KB
testcase_31 AC 71 ms
71,028 KB
testcase_32 AC 71 ms
70,896 KB
testcase_33 AC 71 ms
71,068 KB
testcase_34 AC 72 ms
71,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,m=map(int,input().split(':'))
mm=(m+5)%60
hh=(h+1)%24 if m>=55 else h
print('{:02}:{:02}'.format(hh,mm))
0