結果

問題 No.1929 Exponential Sequence
ユーザー rlangevinrlangevin
提出日時 2023-04-12 08:58:34
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,719 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 185,560 KB
最終ジャッジ日時 2024-10-08 06:15:47
合計ジャッジ時間 4,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,524 KB
testcase_01 AC 38 ms
53,132 KB
testcase_02 AC 39 ms
54,328 KB
testcase_03 AC 424 ms
185,136 KB
testcase_04 AC 38 ms
52,680 KB
testcase_05 AC 38 ms
52,820 KB
testcase_06 AC 36 ms
52,804 KB
testcase_07 AC 37 ms
52,992 KB
testcase_08 RE -
testcase_09 AC 36 ms
52,464 KB
testcase_10 AC 36 ms
53,948 KB
testcase_11 AC 35 ms
53,244 KB
testcase_12 AC 37 ms
53,128 KB
testcase_13 AC 37 ms
53,976 KB
testcase_14 AC 38 ms
53,128 KB
testcase_15 AC 51 ms
64,872 KB
testcase_16 AC 41 ms
59,124 KB
testcase_17 AC 36 ms
52,816 KB
testcase_18 AC 36 ms
54,396 KB
testcase_19 RE -
testcase_20 AC 38 ms
54,400 KB
testcase_21 AC 338 ms
185,560 KB
testcase_22 AC 241 ms
143,688 KB
testcase_23 AC 334 ms
184,888 KB
testcase_24 AC 189 ms
122,688 KB
testcase_25 AC 326 ms
173,728 KB
testcase_26 AC 333 ms
185,176 KB
testcase_27 AC 35 ms
52,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

def f(L):
    if L == []:
        return 0
    n = len(L)
    temp = []
    if n == 1:
        for a in range(1, 31):
            v1 = L[0] ** a
            if v1 > S:
                break
            temp.append(v1)
    elif n == 2:
        for a in range(1, 31):
            v1 = L[0] ** a
            if v1 > S:
                break
            for b in range(1, 31):
                v2 = v1 + L[1] ** b
                if v2 > S:
                    break
                temp.append(v2)
    elif n == 3:
        for a in range(1, 31):
            v1 = L[0] ** a
            if v1 > S:
                break
            for b in range(1, 31):
                v2 = v1 + L[1] ** b
                if v2 > S:
                    break
                for c in range(1, 31):
                    v3 = v2 + L[2] ** c
                    if v3 > S:
                        break
                    temp.append(v3)
    else:
        for a in range(1, 31):
            v1 = L[0] ** a
            if v1 > S:
                break
            for b in range(1, 31):
                v2 = v1 + L[1] ** b
                if v2 > S:
                    break
                for c in range(1, 31):
                    v3 = v2 + L[2] ** c
                    if v3 > S:
                        break
                    for d in range(1, 31):
                        v4 = v3 + L[3] ** d
                        if v4 > S:
                            break
                        temp.append(v4)
    return temp

N, S = map(int, input().split())
A = list(map(int, input().split()))

N1 = (N + 1)//2
L1, L2 = f(A[:N1]), f(A[N1:])
ans = 0
L2.sort()
for a in L1:
    ans += bisect_right(L2, S - a)

print(ans)
0