結果

問題 No.1139 Slime Race
ユーザー 8nd5t8nd5t
提出日時 2020-08-01 01:36:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

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