結果

問題 No.1139 Slime Race
ユーザー qumazakiqumazaki
提出日時 2020-09-08 17:27:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 101,616 KB
最終ジャッジ日時 2024-07-02 08:32:19
合計ジャッジ時間 2,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,808 KB
testcase_01 AC 36 ms
52,280 KB
testcase_02 AC 37 ms
51,696 KB
testcase_03 AC 38 ms
52,836 KB
testcase_04 AC 36 ms
52,680 KB
testcase_05 AC 38 ms
53,164 KB
testcase_06 AC 45 ms
59,436 KB
testcase_07 AC 37 ms
52,936 KB
testcase_08 AC 37 ms
51,944 KB
testcase_09 AC 38 ms
52,236 KB
testcase_10 AC 77 ms
100,540 KB
testcase_11 AC 78 ms
98,992 KB
testcase_12 AC 84 ms
101,616 KB
testcase_13 AC 38 ms
52,216 KB
testcase_14 AC 79 ms
101,188 KB
testcase_15 AC 79 ms
97,680 KB
testcase_16 AC 86 ms
100,492 KB
testcase_17 AC 80 ms
101,332 KB
testcase_18 AC 71 ms
92,212 KB
testcase_19 AC 62 ms
82,048 KB
testcase_20 AC 61 ms
81,092 KB
testcase_21 AC 72 ms
92,288 KB
testcase_22 AC 80 ms
100,980 KB
testcase_23 AC 85 ms
98,992 KB
testcase_24 AC 38 ms
53,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int,input().split())
x = list(map(int,input().split()))
v = list(map(int,input().split()))
sp = sum(v)
ans = -(-d//sp)
print(ans)
0