結果

問題 No.525 二度寝の季節
ユーザー alcoholampalcoholamp
提出日時 2019-10-17 14:38:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 34 ms / 1,000 ms
コード長 279 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 10,580 KB
実行使用メモリ 10,024 KB
最終ジャッジ日時 2023-09-06 17:30:27
合計ジャッジ時間 3,765 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
9,636 KB
testcase_01 AC 33 ms
9,984 KB
testcase_02 AC 33 ms
9,844 KB
testcase_03 AC 32 ms
9,964 KB
testcase_04 AC 32 ms
9,900 KB
testcase_05 AC 33 ms
9,904 KB
testcase_06 AC 32 ms
9,976 KB
testcase_07 AC 32 ms
9,632 KB
testcase_08 AC 32 ms
9,876 KB
testcase_09 AC 32 ms
9,912 KB
testcase_10 AC 32 ms
9,840 KB
testcase_11 AC 32 ms
10,024 KB
testcase_12 AC 32 ms
9,888 KB
testcase_13 AC 32 ms
9,880 KB
testcase_14 AC 34 ms
9,868 KB
testcase_15 AC 32 ms
9,800 KB
testcase_16 AC 32 ms
9,908 KB
testcase_17 AC 32 ms
9,892 KB
testcase_18 AC 33 ms
9,864 KB
testcase_19 AC 33 ms
9,976 KB
testcase_20 AC 33 ms
9,804 KB
testcase_21 AC 33 ms
9,876 KB
testcase_22 AC 33 ms
9,824 KB
testcase_23 AC 33 ms
9,892 KB
testcase_24 AC 33 ms
9,968 KB
testcase_25 AC 33 ms
9,844 KB
testcase_26 AC 33 ms
9,844 KB
testcase_27 AC 33 ms
9,800 KB
testcase_28 AC 32 ms
9,976 KB
testcase_29 AC 32 ms
9,984 KB
testcase_30 AC 33 ms
9,800 KB
testcase_31 AC 33 ms
9,868 KB
testcase_32 AC 32 ms
9,952 KB
testcase_33 AC 33 ms
9,896 KB
testcase_34 AC 32 ms
9,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from datetime import datetime, date, timedelta

class Problem0525:
    def solve(this):
        t = datetime.strptime(input(), '%H:%M')
        print(datetime.strftime(t + timedelta(minutes=5), '%H:%M'))
if __name__ == "__main__":
    problem = Problem0525()
    problem.solve()
0