結果

問題 No.1139 Slime Race
ユーザー ntk-ta01ntk-ta01
提出日時 2020-07-31 21:36:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,808 KB
最終ジャッジ日時 2024-07-02 08:19:21
合計ジャッジ時間 5,874 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 33 ms
11,008 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 391 ms
24,088 KB
testcase_11 AC 394 ms
20,788 KB
testcase_12 AC 168 ms
25,808 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 321 ms
21,708 KB
testcase_15 AC 332 ms
22,516 KB
testcase_16 AC 378 ms
25,308 KB
testcase_17 AC 377 ms
21,716 KB
testcase_18 AC 273 ms
20,372 KB
testcase_19 AC 214 ms
16,560 KB
testcase_20 AC 209 ms
16,420 KB
testcase_21 AC 306 ms
19,108 KB
testcase_22 AC 373 ms
21,500 KB
testcase_23 AC 382 ms
25,540 KB
testcase_24 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, D = (int(i) for i in input().split())
    X = [int(i) for i in input().split()]
    V = [int(i) for i in input().split()]

    def is_ok(t):
        dist = 0
        for i in range(N):
            dist += V[i] * t
        if dist >= D:
            return True
        else:
            return False

    def binary_search():
        ng = 0
        ok = D
        while abs(ok - ng) > 1:
            mid = ng + (ok - ng) // 2
            if is_ok(mid):
                ok = mid
            else:
                ng = mid
        return ok

    print(binary_search())


if __name__ == '__main__':
    main()
0