結果

問題 No.1139 Slime Race
ユーザー convexineqconvexineq
提出日時 2021-05-10 06:45:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 121 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 81,544 KB
実行使用メモリ 101,964 KB
最終ジャッジ日時 2023-10-19 15:02:05
合計ジャッジ時間 4,473 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,212 KB
testcase_01 AC 38 ms
53,212 KB
testcase_02 AC 38 ms
53,212 KB
testcase_03 AC 38 ms
53,212 KB
testcase_04 AC 38 ms
53,212 KB
testcase_05 AC 38 ms
53,212 KB
testcase_06 AC 42 ms
59,244 KB
testcase_07 AC 38 ms
53,212 KB
testcase_08 AC 39 ms
53,212 KB
testcase_09 AC 38 ms
53,212 KB
testcase_10 AC 89 ms
101,160 KB
testcase_11 AC 88 ms
101,964 KB
testcase_12 AC 90 ms
99,852 KB
testcase_13 AC 38 ms
53,212 KB
testcase_14 AC 87 ms
101,284 KB
testcase_15 AC 81 ms
97,032 KB
testcase_16 AC 89 ms
98,380 KB
testcase_17 AC 88 ms
101,284 KB
testcase_18 AC 75 ms
97,764 KB
testcase_19 AC 65 ms
87,320 KB
testcase_20 AC 63 ms
85,108 KB
testcase_21 AC 76 ms
97,368 KB
testcase_22 AC 87 ms
101,200 KB
testcase_23 AC 89 ms
95,944 KB
testcase_24 AC 38 ms
53,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int,input().split())
*x, = map(int,input().split())
*v, = map(int,input().split())
V = sum(v)
print((d+V-1)//V)
0