結果
| 問題 | No.296 n度寝 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-01-08 20:15:37 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 22 ms / 1,000 ms |
| + 845µs | |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 61 ms |
| コンパイル使用メモリ | 81,572 KB |
| 実行使用メモリ | 55,968 KB |
| 最終ジャッジ日時 | 2026-09-24 03:08:32 |
| 合計ジャッジ時間 | 2,932 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
ソースコード
n,h,m,t = map(int,input().split()) n = (n-1)*t hh = n//60 mm = n%60 h += hh m += mm h += m//60 m = m%60 print(h%24) print(m)