結果

問題 No.1139 Slime Race
ユーザー etale.K3etale.K3
提出日時 2020-12-23 18:15:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,404 KB
最終ジャッジ日時 2024-07-02 08:34:14
合計ジャッジ時間 2,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 26 ms
11,008 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 64 ms
25,844 KB
testcase_11 AC 65 ms
22,788 KB
testcase_12 AC 70 ms
27,304 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 60 ms
19,892 KB
testcase_15 AC 63 ms
24,988 KB
testcase_16 AC 69 ms
27,432 KB
testcase_17 AC 60 ms
22,304 KB
testcase_18 AC 58 ms
22,872 KB
testcase_19 AC 47 ms
17,440 KB
testcase_20 AC 46 ms
17,284 KB
testcase_21 AC 54 ms
20,352 KB
testcase_22 AC 62 ms
23,000 KB
testcase_23 AC 71 ms
28,404 KB
testcase_24 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(-(-D//sum(V)))
0