結果

問題 No.734 Careful Engineer
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-10-25 09:34:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 10,700 KB
実行使用メモリ 9,208 KB
最終ジャッジ日時 2023-09-26 10:32:30
合計ジャッジ時間 1,564 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
9,036 KB
testcase_01 AC 21 ms
9,056 KB
testcase_02 AC 21 ms
8,964 KB
testcase_03 AC 22 ms
9,208 KB
testcase_04 AC 21 ms
9,180 KB
testcase_05 AC 21 ms
9,028 KB
testcase_06 AC 21 ms
8,952 KB
testcase_07 AC 20 ms
9,044 KB
testcase_08 AC 21 ms
8,968 KB
testcase_09 AC 21 ms
9,068 KB
testcase_10 AC 20 ms
9,024 KB
testcase_11 AC 21 ms
9,180 KB
testcase_12 AC 20 ms
9,068 KB
testcase_13 AC 21 ms
9,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.734 Careful Engineer
from decimal import Decimal
from math import ceil

a, b, c = [int(s) for s in input().split()]

products = Decimal(3600 * c / (60 * a - b))

print(ceil(products) if 60 * a - b > 0 else -1)
0