結果

問題 No.296 n度寝
ユーザー alcoholampalcoholamp
提出日時 2019-10-18 15:30:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 355 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-25 14:25:04
合計ジャッジ時間 1,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from datetime import datetime, date, timedelta

class Problem0525:
    def solve(this):
        n,h,m,t = map(int, input().split())

        d = datetime.strptime('%d:%d' % (h,m), '%H:%M')
        l = d + timedelta(minutes=(n-1) * t)
        print(l.hour)
        print(l.minute)
if __name__ == "__main__":
    problem = Problem0525()
    problem.solve()
0