結果
| 問題 | No.296 n度寝 | 
| コンテスト | |
| ユーザー |  定期定期 | 
| 提出日時 | 2024-11-11 21:05:44 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 31 ms / 1,000 ms | 
| コード長 | 156 bytes | 
| コンパイル時間 | 464 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 10,624 KB | 
| 最終ジャッジ日時 | 2024-11-11 21:05:47 | 
| 合計ジャッジ時間 | 2,085 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 16 | 
ソースコード
n, h, m, t = map(int, input().split()) initial_time = h * 60 + m final_time = initial_time + t * (n - 1) print(final_time // 60 % 24) print(final_time % 60)
