結果
問題 | No.734 Careful Engineer |
ユーザー |
![]() |
提出日時 | 2018-12-16 19:02:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 34 ms / 2,000 ms |
コード長 | 259 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,240 KB |
最終ジャッジ日時 | 2025-01-18 00:06:42 |
合計ジャッジ時間 | 1,243 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 11 |
ソースコード
first = input()firstdata = first.split(" ")tesagyo = int(firstdata[0])*60progtime = int(firstdata[1])progmake = int(firstdata[2])result = 0if tesagyo > progtime:result = int((progmake/int(tesagyo-progtime))*3600)+1else:result = -1print(result)