結果

問題 No.1139 Slime Race
ユーザー butamanbutaman
提出日時 2020-12-08 12:56:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 101,632 KB
最終ジャッジ日時 2024-07-02 08:34:01
合計ジャッジ時間 2,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,772 KB
testcase_01 AC 35 ms
51,568 KB
testcase_02 AC 35 ms
53,296 KB
testcase_03 AC 36 ms
52,100 KB
testcase_04 AC 37 ms
52,808 KB
testcase_05 AC 36 ms
52,520 KB
testcase_06 AC 41 ms
59,332 KB
testcase_07 AC 39 ms
52,920 KB
testcase_08 AC 37 ms
53,232 KB
testcase_09 AC 36 ms
53,508 KB
testcase_10 AC 75 ms
100,004 KB
testcase_11 AC 73 ms
99,116 KB
testcase_12 AC 81 ms
101,632 KB
testcase_13 AC 35 ms
52,556 KB
testcase_14 AC 76 ms
100,920 KB
testcase_15 AC 72 ms
97,636 KB
testcase_16 AC 80 ms
100,708 KB
testcase_17 AC 74 ms
100,924 KB
testcase_18 AC 66 ms
92,572 KB
testcase_19 AC 56 ms
82,176 KB
testcase_20 AC 57 ms
82,116 KB
testcase_21 AC 66 ms
92,900 KB
testcase_22 AC 76 ms
100,692 KB
testcase_23 AC 83 ms
98,892 KB
testcase_24 AC 37 ms
52,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
x = list(map(int, input().split()))
v = list(map(int, input().split()))

sumv = sum(v)
print((D+sumv-1)//sumv)
0