結果

問題 No.1139 Slime Race
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-31 21:36:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 86,660 KB
実行使用メモリ 102,532 KB
最終ジャッジ日時 2023-09-15 02:51:16
合計ジャッジ時間 4,018 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,132 KB
testcase_01 AC 72 ms
70,928 KB
testcase_02 AC 71 ms
71,244 KB
testcase_03 AC 73 ms
71,088 KB
testcase_04 AC 71 ms
71,036 KB
testcase_05 AC 73 ms
71,208 KB
testcase_06 AC 75 ms
75,324 KB
testcase_07 AC 72 ms
70,928 KB
testcase_08 AC 71 ms
71,232 KB
testcase_09 AC 71 ms
71,232 KB
testcase_10 AC 109 ms
100,192 KB
testcase_11 AC 110 ms
102,532 KB
testcase_12 AC 113 ms
98,144 KB
testcase_13 AC 71 ms
71,236 KB
testcase_14 AC 111 ms
100,152 KB
testcase_15 AC 106 ms
95,428 KB
testcase_16 AC 111 ms
97,696 KB
testcase_17 AC 109 ms
100,192 KB
testcase_18 AC 102 ms
96,312 KB
testcase_19 AC 94 ms
88,560 KB
testcase_20 AC 92 ms
88,520 KB
testcase_21 AC 102 ms
96,556 KB
testcase_22 AC 109 ms
100,372 KB
testcase_23 AC 111 ms
94,324 KB
testcase_24 AC 72 ms
71,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
X = list(map(int, input().split()))
V = list(map(int, input().split()))

a = sum(V)
import math
print(math.ceil(d/a))
0