結果

問題 No.1139 Slime Race
ユーザー lloyzlloyz
提出日時 2022-02-10 20:51:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 10,696 KB
実行使用メモリ 19,748 KB
最終ジャッジ日時 2023-09-08 10:50:45
合計ジャッジ時間 2,695 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,808 KB
testcase_01 AC 15 ms
7,808 KB
testcase_02 AC 15 ms
7,808 KB
testcase_03 AC 15 ms
7,952 KB
testcase_04 AC 15 ms
7,808 KB
testcase_05 AC 15 ms
7,884 KB
testcase_06 AC 16 ms
8,324 KB
testcase_07 AC 16 ms
7,816 KB
testcase_08 AC 15 ms
7,772 KB
testcase_09 AC 15 ms
7,812 KB
testcase_10 AC 51 ms
19,640 KB
testcase_11 AC 48 ms
16,492 KB
testcase_12 AC 55 ms
19,500 KB
testcase_13 AC 15 ms
7,808 KB
testcase_14 AC 42 ms
16,024 KB
testcase_15 AC 46 ms
17,064 KB
testcase_16 AC 53 ms
19,748 KB
testcase_17 AC 45 ms
15,992 KB
testcase_18 AC 44 ms
16,660 KB
testcase_19 AC 32 ms
12,404 KB
testcase_20 AC 32 ms
11,996 KB
testcase_21 AC 40 ms
14,180 KB
testcase_22 AC 46 ms
15,800 KB
testcase_23 AC 54 ms
19,064 KB
testcase_24 AC 15 ms
7,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
map(int, input().split())
V = list(map(int, input().split()))

sumV = sum(V)
print((d + sumV - 1) // sumV)
0