結果

問題 No.296 n度寝
ユーザー splash9494splash9494
提出日時 2020-05-04 12:07:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 150 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 53,476 KB
最終ジャッジ日時 2024-06-24 00:50:52
合計ジャッジ時間 1,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,000 KB
testcase_01 AC 39 ms
52,416 KB
testcase_02 AC 39 ms
52,268 KB
testcase_03 AC 39 ms
52,684 KB
testcase_04 AC 38 ms
52,672 KB
testcase_05 AC 38 ms
52,488 KB
testcase_06 AC 38 ms
53,476 KB
testcase_07 AC 39 ms
52,908 KB
testcase_08 AC 38 ms
52,860 KB
testcase_09 AC 37 ms
52,360 KB
testcase_10 AC 38 ms
52,580 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 38 ms
53,008 KB
testcase_13 AC 38 ms
52,572 KB
testcase_14 AC 38 ms
52,440 KB
testcase_15 AC 38 ms
51,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

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

M += T * (N - 1)
H += M // 60
M %= 60
H %= 24
print(H)
print(M)
0