結果
| 問題 | No.296 n度寝 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-17 13:23:55 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 102 bytes |
| 記録 | |
| コンパイル時間 | 481 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 15,612 KB |
| 最終ジャッジ日時 | 2026-03-10 15:10:55 |
| 合計ジャッジ時間 | 3,482 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 WA * 10 |
ソースコード
n,h,m,t=map(int,input().split()) while n>1: if m>59-t:t=-~t%24 m=(m+t)%60 n-=1 print(h) print(m)