結果

問題 No.296 n度寝
ユーザー mahiromahiro
提出日時 2020-01-11 18:49:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 1,000 ms
コード長 151 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 53,552 KB
最終ジャッジ日時 2024-05-04 01:30:05
合計ジャッジ時間 1,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,924 KB
testcase_01 AC 30 ms
52,964 KB
testcase_02 AC 34 ms
53,552 KB
testcase_03 AC 34 ms
51,812 KB
testcase_04 AC 33 ms
52,940 KB
testcase_05 AC 33 ms
52,456 KB
testcase_06 AC 32 ms
52,276 KB
testcase_07 AC 30 ms
52,660 KB
testcase_08 AC 31 ms
52,148 KB
testcase_09 AC 32 ms
53,144 KB
testcase_10 AC 31 ms
52,940 KB
testcase_11 AC 31 ms
52,600 KB
testcase_12 AC 32 ms
52,356 KB
testcase_13 AC 32 ms
52,468 KB
testcase_14 AC 30 ms
52,004 KB
testcase_15 AC 32 ms
52,624 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