結果

問題 No.525 二度寝の季節
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2021-02-03 15:02:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 1,000 ms
コード長 106 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 53,424 KB
最終ジャッジ日時 2024-06-30 01:23:27
合計ジャッジ時間 2,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,212 KB
testcase_01 AC 30 ms
52,316 KB
testcase_02 AC 30 ms
52,896 KB
testcase_03 AC 30 ms
51,800 KB
testcase_04 AC 31 ms
52,112 KB
testcase_05 AC 31 ms
52,120 KB
testcase_06 AC 30 ms
52,068 KB
testcase_07 AC 30 ms
51,568 KB
testcase_08 AC 33 ms
52,356 KB
testcase_09 AC 34 ms
51,984 KB
testcase_10 AC 34 ms
52,988 KB
testcase_11 AC 34 ms
52,348 KB
testcase_12 AC 33 ms
53,036 KB
testcase_13 AC 33 ms
52,428 KB
testcase_14 AC 33 ms
52,316 KB
testcase_15 AC 34 ms
52,640 KB
testcase_16 AC 33 ms
51,884 KB
testcase_17 AC 31 ms
52,108 KB
testcase_18 AC 31 ms
52,368 KB
testcase_19 AC 33 ms
52,440 KB
testcase_20 AC 30 ms
51,668 KB
testcase_21 AC 31 ms
52,960 KB
testcase_22 AC 31 ms
52,932 KB
testcase_23 AC 31 ms
53,092 KB
testcase_24 AC 30 ms
52,176 KB
testcase_25 AC 30 ms
52,020 KB
testcase_26 AC 30 ms
51,820 KB
testcase_27 AC 30 ms
52,880 KB
testcase_28 AC 31 ms
51,568 KB
testcase_29 AC 30 ms
51,876 KB
testcase_30 AC 33 ms
52,516 KB
testcase_31 AC 34 ms
52,556 KB
testcase_32 AC 34 ms
53,424 KB
testcase_33 AC 34 ms
52,644 KB
testcase_34 AC 33 ms
52,060 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