結果
| 問題 | No.296 n度寝 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-05-27 00:51:22 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 93 ms / 1,000 ms |
| + 622µs | |
| コード長 | 247 bytes |
| 記録 | |
| コンパイル時間 | 290 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 15,740 KB |
| 最終ジャッジ日時 | 2026-08-29 16:13:57 |
| 合計ジャッジ時間 | 3,036 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
ソースコード
import datetime N , H , M , T = map(int , input().split()) first_ring = datetime.time(H , M) wake_up = datetime.datetime.combine(datetime.date(2019,5,26), first_ring) + datetime.timedelta(minutes=(N-1)*T) print(wake_up.hour) print(wake_up.minute)