結果

問題 No.1139 Slime Race
ユーザー tomoyaatcodertomoyaatcoder
提出日時 2020-08-01 10:58:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 86,812 KB
実行使用メモリ 103,080 KB
最終ジャッジ日時 2023-09-15 03:01:59
合計ジャッジ時間 4,125 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,424 KB
testcase_01 AC 72 ms
71,416 KB
testcase_02 AC 72 ms
71,432 KB
testcase_03 AC 72 ms
71,136 KB
testcase_04 AC 71 ms
71,036 KB
testcase_05 AC 71 ms
71,036 KB
testcase_06 AC 81 ms
75,924 KB
testcase_07 AC 71 ms
71,124 KB
testcase_08 AC 71 ms
71,396 KB
testcase_09 AC 71 ms
71,388 KB
testcase_10 AC 111 ms
100,360 KB
testcase_11 AC 109 ms
103,080 KB
testcase_12 AC 113 ms
98,532 KB
testcase_13 AC 71 ms
71,224 KB
testcase_14 AC 111 ms
100,616 KB
testcase_15 AC 110 ms
95,828 KB
testcase_16 AC 114 ms
97,700 KB
testcase_17 AC 115 ms
100,520 KB
testcase_18 AC 106 ms
96,636 KB
testcase_19 AC 96 ms
89,096 KB
testcase_20 AC 94 ms
88,644 KB
testcase_21 AC 104 ms
96,532 KB
testcase_22 AC 114 ms
100,676 KB
testcase_23 AC 115 ms
94,996 KB
testcase_24 AC 75 ms
71,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
x = list(map(int, input().split()))
v = list(map(int, input().split()))
ans = -(-D // sum(v))
print(ans)
0