結果

問題 No.734 Careful Engineer
ユーザー gorugo30gorugo30
提出日時 2021-02-24 11:56:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 53,300 KB
最終ジャッジ日時 2024-09-24 12:31:26
合計ジャッジ時間 1,368 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,572 KB
testcase_01 AC 34 ms
52,428 KB
testcase_02 AC 34 ms
52,580 KB
testcase_03 AC 33 ms
53,100 KB
testcase_04 AC 35 ms
52,276 KB
testcase_05 AC 34 ms
53,012 KB
testcase_06 AC 36 ms
52,504 KB
testcase_07 AC 35 ms
52,608 KB
testcase_08 AC 36 ms
52,208 KB
testcase_09 AC 35 ms
52,904 KB
testcase_10 AC 35 ms
53,188 KB
testcase_11 AC 39 ms
53,300 KB
testcase_12 AC 35 ms
52,200 KB
testcase_13 AC 35 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())
en = 10 ** 20
st = -1
while en - st > 1:
    mid = (en + st) // 2
    if 60 * A * mid >= B * mid + 3600 * C:
        en = mid
    else:
        st = mid
if en == 10 ** 20:
    print(-1)
else:
    print(en)
0