結果
| 問題 | No.296 n度寝 | 
| コンテスト | |
| ユーザー |  splash9494 | 
| 提出日時 | 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 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 16 | 
ソースコード
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)
