結果

問題 No.1139 Slime Race
ユーザー FromBooskaFromBooska
提出日時 2023-03-03 03:47:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 101,664 KB
最終ジャッジ日時 2024-09-17 19:48:34
合計ジャッジ時間 3,107 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

# 合体すると合体両方のスピードになるので、結局単位時間に進む距離は不変
# つまり合体を無視していい

N, D = map(int, input().split())
X = list(map(int, input().split()))
V = list(map(int, input().split()))
sumV = sum(V)
T = (D+sumV-1)//sumV
print(T)
0