結果
| 問題 | No.296 n度寝 |
| コンテスト | |
| ユーザー |
tyntyn
|
| 提出日時 | 2019-09-16 00:10:11 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 110 bytes |
| 記録 | |
| コンパイル時間 | 446 ms |
| コンパイル使用メモリ | 20,704 KB |
| 実行使用メモリ | 20,572 KB |
| 最終ジャッジ日時 | 2026-03-28 12:57:58 |
| 合計ジャッジ時間 | 4,744 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 16 |
ソースコード
n, h, m, t = map(int, input()) m += (n-1)*t ans_h = (h + m//60) % 24 ans_m = m % 60 print(ans_h) print(ans_m)
tyntyn