結果

問題 No.1139 Slime Race
ユーザー raven7959
提出日時 2021-08-03 21:46:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 101,776 KB
最終ジャッジ日時 2024-09-16 14:58:26
合計ジャッジ時間 3,625 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil
N,D=map(int,input().split())
X=list(map(int,input().split()))
V=list(map(int,input().split()))
print(ceil(D/sum(V)))
0