結果

問題 No.1139 Slime Race
ユーザー qumazakiqumazaki
提出日時 2020-09-08 17:27:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 86,820 KB
実行使用メモリ 102,928 KB
最終ジャッジ日時 2023-09-15 03:07:13
合計ジャッジ時間 4,345 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,104 KB
testcase_01 AC 70 ms
71,256 KB
testcase_02 AC 70 ms
71,156 KB
testcase_03 AC 71 ms
71,232 KB
testcase_04 AC 75 ms
71,196 KB
testcase_05 AC 72 ms
71,332 KB
testcase_06 AC 76 ms
75,520 KB
testcase_07 AC 74 ms
71,268 KB
testcase_08 AC 70 ms
71,100 KB
testcase_09 AC 73 ms
71,132 KB
testcase_10 AC 115 ms
100,412 KB
testcase_11 AC 113 ms
102,928 KB
testcase_12 AC 117 ms
98,396 KB
testcase_13 AC 75 ms
71,128 KB
testcase_14 AC 114 ms
100,800 KB
testcase_15 AC 108 ms
95,928 KB
testcase_16 AC 112 ms
97,880 KB
testcase_17 AC 112 ms
100,460 KB
testcase_18 AC 103 ms
96,436 KB
testcase_19 AC 94 ms
89,008 KB
testcase_20 AC 93 ms
88,900 KB
testcase_21 AC 104 ms
96,644 KB
testcase_22 AC 116 ms
100,284 KB
testcase_23 AC 114 ms
94,580 KB
testcase_24 AC 71 ms
71,256 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