結果

問題 No.296 n度寝
ユーザー kentosermakentoserma
提出日時 2020-01-08 16:40:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 29 ms / 1,000 ms
コード長 707 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-02 12:52:37
合計ジャッジ時間 1,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 25 ms
10,880 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 25 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime

N,H,M,T = map(int,input().split(" "))

FirstWakeupTime = datetime.datetime(year=1,month=1,day=1,hour=H,minute=M) #最初に起きた時間をdatetime型の変数に代入
LastWakeupTime = (T * 60) * (N - 1) #最初に起きてからn度寝が終わって最後に起きるまでの時間

result = FirstWakeupTime + datetime.timedelta(seconds=LastWakeupTime)

ResultHour = result.strftime("%H")
ResultMinute = result.strftime("%M")

#時間の表示が2桁で先頭の0埋めがされるので、先頭が0の場合はカットする
if ResultHour[0] == "0":
    ResultHour = ResultHour[1]
if ResultMinute[0] == "0":
    ResultMinute = ResultMinute[1]

print(ResultHour)
print(ResultMinute)
0