結果

問題 No.296 n度寝
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-06 18:11:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 108 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 53,600 KB
最終ジャッジ日時 2024-06-02 02:45:00
合計ジャッジ時間 1,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,944 KB
testcase_01 AC 33 ms
53,492 KB
testcase_02 AC 32 ms
52,544 KB
testcase_03 AC 31 ms
53,600 KB
testcase_04 AC 31 ms
52,116 KB
testcase_05 AC 33 ms
53,288 KB
testcase_06 AC 30 ms
52,616 KB
testcase_07 AC 31 ms
53,296 KB
testcase_08 AC 30 ms
53,148 KB
testcase_09 AC 31 ms
53,008 KB
testcase_10 AC 32 ms
52,056 KB
testcase_11 AC 31 ms
53,184 KB
testcase_12 AC 33 ms
52,424 KB
testcase_13 AC 35 ms
53,480 KB
testcase_14 AC 34 ms
51,900 KB
testcase_15 AC 34 ms
52,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, h, m, t = map(int, input().split())
T = h*60+m+t*(n-1)
T %= 24*60
H, M = divmod(T, 60)
print(H)
print(M)
0