結果

問題 No.1139 Slime Race
ユーザー thglaflsthglafls
提出日時 2022-11-23 19:26:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 52,244 KB
最終ジャッジ日時 2024-09-25 00:03:54
合計ジャッジ時間 16,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 470 ms
44,428 KB
testcase_01 AC 481 ms
44,424 KB
testcase_02 AC 482 ms
44,048 KB
testcase_03 AC 480 ms
44,440 KB
testcase_04 AC 479 ms
44,432 KB
testcase_05 AC 487 ms
44,424 KB
testcase_06 AC 478 ms
44,232 KB
testcase_07 AC 472 ms
44,044 KB
testcase_08 AC 483 ms
44,044 KB
testcase_09 AC 474 ms
44,300 KB
testcase_10 AC 551 ms
51,072 KB
testcase_11 AC 555 ms
50,196 KB
testcase_12 AC 572 ms
52,120 KB
testcase_13 AC 485 ms
44,180 KB
testcase_14 AC 567 ms
52,000 KB
testcase_15 AC 544 ms
50,208 KB
testcase_16 AC 576 ms
51,988 KB
testcase_17 AC 560 ms
52,140 KB
testcase_18 AC 546 ms
49,812 KB
testcase_19 AC 525 ms
47,692 KB
testcase_20 AC 524 ms
47,500 KB
testcase_21 AC 538 ms
49,932 KB
testcase_22 AC 567 ms
51,432 KB
testcase_23 AC 579 ms
52,244 KB
testcase_24 AC 472 ms
44,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, D = [int(i) for i in input().split()]

x = np.array([int(i) for i in input().split()])
v = np.array([int(i) for i in input().split()])

print(int(np.ceil(D / np.sum(v))))
0