結果

問題 No.1139 Slime Race
ユーザー mlihua09mlihua09
提出日時 2020-09-03 13:19:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 98,596 KB
最終ジャッジ日時 2024-07-02 08:31:21
合計ジャッジ時間 2,202 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 32 ms
52,624 KB
testcase_02 AC 32 ms
52,812 KB
testcase_03 AC 31 ms
52,568 KB
testcase_04 AC 35 ms
52,312 KB
testcase_05 AC 32 ms
52,084 KB
testcase_06 AC 37 ms
58,760 KB
testcase_07 AC 34 ms
52,244 KB
testcase_08 AC 33 ms
52,172 KB
testcase_09 AC 32 ms
52,484 KB
testcase_10 AC 61 ms
87,248 KB
testcase_11 AC 58 ms
84,604 KB
testcase_12 AC 62 ms
90,096 KB
testcase_13 AC 34 ms
51,864 KB
testcase_14 AC 57 ms
86,308 KB
testcase_15 AC 57 ms
85,136 KB
testcase_16 AC 59 ms
89,864 KB
testcase_17 AC 58 ms
87,024 KB
testcase_18 AC 55 ms
81,212 KB
testcase_19 AC 48 ms
72,880 KB
testcase_20 AC 48 ms
74,512 KB
testcase_21 AC 56 ms
81,036 KB
testcase_22 AC 61 ms
86,776 KB
testcase_23 AC 78 ms
98,596 KB
testcase_24 AC 34 ms
52,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, D = map(int, input().split())

X = input().split()
V = sum(map(int, input().split()))

print((D - 1) // V + 1)
0