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