結果
| 問題 | No.296 n度寝 |
| コンテスト | |
| ユーザー |
_matumo_
|
| 提出日時 | 2019-11-05 18:54:16 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 95 ms / 1,000 ms |
| + 731µs | |
| コード長 | 79 bytes |
| 記録 | |
| コンパイル時間 | 297 ms |
| コンパイル使用メモリ | 21,420 KB |
| 実行使用メモリ | 15,888 KB |
| 最終ジャッジ日時 | 2026-08-27 14:05:05 |
| 合計ジャッジ時間 | 3,138 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
ソースコード
N,H,M,T=map(int,input().split()) m=(H*60+M+T*(N-1)) print(m//60%24) print(m%60)
_matumo_