結果

問題 No.1139 Slime Race
ユーザー 8nd5t8nd5t
提出日時 2020-08-01 01:36:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,364 KB
最終ジャッジ日時 2024-07-02 08:27:31
合計ジャッジ時間 2,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
11,520 KB
testcase_01 AC 36 ms
11,392 KB
testcase_02 AC 36 ms
11,392 KB
testcase_03 AC 36 ms
11,520 KB
testcase_04 AC 35 ms
11,520 KB
testcase_05 AC 35 ms
11,520 KB
testcase_06 AC 37 ms
11,776 KB
testcase_07 AC 35 ms
11,520 KB
testcase_08 AC 35 ms
11,520 KB
testcase_09 AC 35 ms
11,520 KB
testcase_10 AC 100 ms
24,812 KB
testcase_11 AC 95 ms
21,620 KB
testcase_12 AC 102 ms
26,364 KB
testcase_13 AC 35 ms
11,520 KB
testcase_14 AC 90 ms
22,448 KB
testcase_15 AC 89 ms
23,392 KB
testcase_16 AC 102 ms
24,824 KB
testcase_17 AC 93 ms
22,452 KB
testcase_18 AC 84 ms
21,672 KB
testcase_19 AC 68 ms
17,284 KB
testcase_20 AC 68 ms
17,032 KB
testcase_21 AC 81 ms
19,976 KB
testcase_22 AC 92 ms
22,112 KB
testcase_23 AC 103 ms
26,276 KB
testcase_24 AC 36 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter,defaultdict,deque
from heapq import heappop,heappush
from bisect import bisect_left,bisect_right 
import sys,math,itertools,fractions
sys.setrecursionlimit(10**8)
mod = 10**9+7
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))

n,d = inpl()
x = inpl()
v = inpl()
s = sum(v)
print((d+s-1)//s)
0