結果

問題 No.296 n度寝
ユーザー konabe
提出日時 2018-04-10 17:21:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 156 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-26 20:54:50
合計ジャッジ時間 1,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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