結果

問題 No.734 Careful Engineer
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-10-25 09:22:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 625 ms
コンパイル使用メモリ 10,488 KB
実行使用メモリ 7,984 KB
最終ジャッジ日時 2023-09-26 10:17:38
合計ジャッジ時間 1,975 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,872 KB
testcase_01 AC 17 ms
7,812 KB
testcase_02 WA -
testcase_03 AC 16 ms
7,908 KB
testcase_04 AC 16 ms
7,876 KB
testcase_05 AC 16 ms
7,904 KB
testcase_06 AC 16 ms
7,908 KB
testcase_07 AC 17 ms
7,836 KB
testcase_08 AC 17 ms
7,824 KB
testcase_09 AC 17 ms
7,944 KB
testcase_10 AC 16 ms
7,836 KB
testcase_11 WA -
testcase_12 AC 17 ms
7,984 KB
testcase_13 AC 16 ms
7,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.734 Careful Engineer
import math

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

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

print(math.ceil(products) if products >= 1 else -1)
0