結果

問題 No.525 二度寝の季節
ユーザー @abcde@abcde
提出日時 2019-02-14 23:07:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 32 ms / 1,000 ms
コード長 282 bytes
コンパイル時間 829 ms
コンパイル使用メモリ 10,680 KB
実行使用メモリ 10,096 KB
最終ジャッジ日時 2023-10-11 12:47:05
合計ジャッジ時間 3,608 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
9,896 KB
testcase_01 AC 30 ms
9,984 KB
testcase_02 AC 30 ms
10,096 KB
testcase_03 AC 30 ms
9,940 KB
testcase_04 AC 31 ms
9,860 KB
testcase_05 AC 31 ms
9,832 KB
testcase_06 AC 30 ms
9,992 KB
testcase_07 AC 31 ms
9,988 KB
testcase_08 AC 32 ms
9,996 KB
testcase_09 AC 32 ms
9,924 KB
testcase_10 AC 32 ms
9,896 KB
testcase_11 AC 31 ms
9,860 KB
testcase_12 AC 32 ms
10,012 KB
testcase_13 AC 32 ms
9,988 KB
testcase_14 AC 31 ms
9,888 KB
testcase_15 AC 32 ms
10,008 KB
testcase_16 AC 31 ms
9,892 KB
testcase_17 AC 31 ms
9,992 KB
testcase_18 AC 30 ms
9,788 KB
testcase_19 AC 31 ms
9,940 KB
testcase_20 AC 31 ms
9,636 KB
testcase_21 AC 31 ms
9,888 KB
testcase_22 AC 32 ms
10,000 KB
testcase_23 AC 31 ms
9,992 KB
testcase_24 AC 31 ms
9,832 KB
testcase_25 AC 30 ms
9,892 KB
testcase_26 AC 31 ms
9,892 KB
testcase_27 AC 30 ms
9,992 KB
testcase_28 AC 30 ms
9,980 KB
testcase_29 AC 30 ms
9,976 KB
testcase_30 AC 30 ms
9,988 KB
testcase_31 AC 30 ms
9,848 KB
testcase_32 AC 30 ms
9,888 KB
testcase_33 AC 30 ms
9,996 KB
testcase_34 AC 31 ms
10,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import datetime

# 1. 入力情報取得.
T = str(input())

# 2. 二度寝の時刻.
d = "2019/02/14 " + T + ":00";
dd = datetime.datetime.strptime(d, '%Y/%m/%d %H:%M:%S')
ans = dd + datetime.timedelta(minutes=5)

# 3. 出力.
print("{0:%H:%M}".format(ans))
0