結果
| 問題 | No.734 Careful Engineer |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-07 18:04:26 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 186 bytes |
| 記録 | |
| コンパイル時間 | 331 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,448 KB |
| 最終ジャッジ日時 | 2026-06-17 02:11:39 |
| 合計ジャッジ時間 | 3,418 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 10 RE * 3 |
ソースコード
A, B, C = map(int, input().split())
if A * 60 < B:
print(-1)
else:
ans = C*3600/(A * 60 - B)
if ans > int(ans):
print(int(ans) + 1)
else:
print(int(ans))