結果

問題 No.296 n度寝
ユーザー mahiromahiro
提出日時 2020-01-11 18:49:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 151 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 53,360 KB
最終ジャッジ日時 2024-11-25 07:19:54
合計ジャッジ時間 2,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,532 KB
testcase_01 AC 33 ms
52,984 KB
testcase_02 AC 32 ms
53,088 KB
testcase_03 AC 33 ms
52,768 KB
testcase_04 AC 32 ms
52,644 KB
testcase_05 AC 32 ms
52,488 KB
testcase_06 AC 33 ms
52,684 KB
testcase_07 AC 34 ms
52,740 KB
testcase_08 AC 33 ms
52,616 KB
testcase_09 AC 35 ms
51,992 KB
testcase_10 AC 36 ms
53,360 KB
testcase_11 AC 34 ms
52,216 KB
testcase_12 AC 35 ms
52,556 KB
testcase_13 AC 34 ms
52,204 KB
testcase_14 AC 34 ms
53,328 KB
testcase_15 AC 34 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, H, M, T = [int(i) for i in input().split()]

M += T * (N - 1)
q, r = divmod(M, 60)
M, H = r, H+q

q, r = divmod(H, 24)
H = r

print(H, M, sep="\n")
0