結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,148 KB
testcase_01 AC 33 ms
52,020 KB
testcase_02 AC 31 ms
52,056 KB
testcase_03 AC 31 ms
52,708 KB
testcase_04 AC 30 ms
53,688 KB
testcase_05 AC 30 ms
52,696 KB
testcase_06 AC 33 ms
58,580 KB
testcase_07 AC 30 ms
52,076 KB
testcase_08 AC 33 ms
52,004 KB
testcase_09 AC 29 ms
51,868 KB
testcase_10 AC 69 ms
100,016 KB
testcase_11 AC 65 ms
99,588 KB
testcase_12 AC 71 ms
101,664 KB
testcase_13 AC 33 ms
52,276 KB
testcase_14 AC 73 ms
101,120 KB
testcase_15 AC 74 ms
97,536 KB
testcase_16 AC 72 ms
100,780 KB
testcase_17 AC 66 ms
101,360 KB
testcase_18 AC 58 ms
92,360 KB
testcase_19 AC 53 ms
81,720 KB
testcase_20 AC 58 ms
82,476 KB
testcase_21 AC 65 ms
92,532 KB
testcase_22 AC 71 ms
100,832 KB
testcase_23 AC 72 ms
98,888 KB
testcase_24 AC 32 ms
51,868 KB
権限があれば一括ダウンロードができます

ソースコード

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