結果
| 問題 | No.296 n度寝 |
| コンテスト | |
| ユーザー |
tomiyance
|
| 提出日時 | 2019-11-14 06:40:04 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 157 bytes |
| 記録 | |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 21,208 KB |
| 実行使用メモリ | 15,916 KB |
| 最終ジャッジ日時 | 2026-09-01 22:20:08 |
| 合計ジャッジ時間 | 3,089 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 WA * 8 |
ソースコード
#!/usr/bin/env python3 import math N, H, M, T = map(int,input().split()) N = N - 1 print(int(H + math.floor((M + N * T) / 60))) print(int((M + N * T) % 60))
tomiyance