結果

問題 No.1139 Slime Race
ユーザー daikisuyamadaikisuyama
提出日時 2020-07-31 23:27:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 101,908 KB
最終ジャッジ日時 2024-07-02 08:25:26
合計ジャッジ時間 2,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,296 KB
testcase_01 AC 40 ms
52,564 KB
testcase_02 AC 37 ms
52,440 KB
testcase_03 AC 37 ms
53,112 KB
testcase_04 AC 36 ms
52,212 KB
testcase_05 AC 36 ms
53,072 KB
testcase_06 AC 40 ms
59,524 KB
testcase_07 AC 37 ms
52,336 KB
testcase_08 AC 36 ms
53,556 KB
testcase_09 AC 36 ms
53,188 KB
testcase_10 AC 74 ms
100,648 KB
testcase_11 AC 73 ms
99,240 KB
testcase_12 AC 82 ms
101,908 KB
testcase_13 AC 36 ms
52,988 KB
testcase_14 AC 74 ms
101,176 KB
testcase_15 AC 75 ms
97,300 KB
testcase_16 AC 80 ms
101,084 KB
testcase_17 AC 74 ms
101,180 KB
testcase_18 AC 67 ms
93,360 KB
testcase_19 AC 58 ms
82,068 KB
testcase_20 AC 58 ms
82,104 KB
testcase_21 AC 67 ms
92,280 KB
testcase_22 AC 77 ms
101,180 KB
testcase_23 AC 81 ms
98,548 KB
testcase_24 AC 37 ms
52,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
x=list(map(int,input().split()))
v=list(map(int,input().split()))
s=sum(v)

def f(k):
    return s*k

l,r=0,1000000000000
while l+1<r:
    k=l+(r-l)//2
    if f(k)>=d:
        r=k
    else:
        l=k
print(r)
0