結果

問題 No.525 二度寝の季節
ユーザー RyutoRyuto
提出日時 2018-03-31 15:35:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 226 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 53,116 KB
最終ジャッジ日時 2024-06-26 01:35:50
合計ジャッジ時間 2,550 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,532 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 38 ms
52,684 KB
testcase_03 AC 38 ms
53,008 KB
testcase_04 AC 38 ms
53,056 KB
testcase_05 AC 42 ms
51,756 KB
testcase_06 AC 39 ms
53,116 KB
testcase_07 AC 39 ms
52,980 KB
testcase_08 AC 38 ms
52,828 KB
testcase_09 AC 38 ms
52,316 KB
testcase_10 AC 39 ms
51,980 KB
testcase_11 AC 38 ms
52,916 KB
testcase_12 AC 39 ms
52,132 KB
testcase_13 AC 39 ms
52,700 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 37 ms
52,936 KB
testcase_16 AC 39 ms
52,180 KB
testcase_17 AC 38 ms
51,816 KB
testcase_18 AC 38 ms
52,696 KB
testcase_19 AC 37 ms
52,336 KB
testcase_20 AC 39 ms
52,952 KB
testcase_21 AC 38 ms
51,980 KB
testcase_22 AC 38 ms
51,964 KB
testcase_23 AC 38 ms
52,108 KB
testcase_24 AC 38 ms
52,164 KB
testcase_25 AC 39 ms
53,004 KB
testcase_26 AC 39 ms
52,624 KB
testcase_27 AC 38 ms
52,928 KB
testcase_28 AC 38 ms
52,000 KB
testcase_29 AC 38 ms
52,612 KB
testcase_30 AC 38 ms
51,940 KB
testcase_31 AC 38 ms
52,152 KB
testcase_32 AC 38 ms
52,864 KB
testcase_33 AC 38 ms
52,072 KB
testcase_34 AC 38 ms
52,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

def main():
    hh, mm = [int(x) for x in input().split(':')]
    mm += 5
    hh = hh + mm//60
    hh = hh%24
    mm = mm%60
    print('{:02}:{:02}'.format(hh,mm))

if __name__ == '__main__':
    main()
0