結果
| 問題 |
No.296 n度寝
|
| コンテスト | |
| ユーザー |
tyntyn
|
| 提出日時 | 2019-09-16 00:10:11 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 110 bytes |
| コンパイル時間 | 92 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-07-06 22:53:14 |
| 合計ジャッジ時間 | 1,320 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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