結果

問題 No.1929 Exponential Sequence
ユーザー H20H20
提出日時 2022-05-06 22:22:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 460 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 127,488 KB
最終ジャッジ日時 2024-09-14 03:53:34
合計ジャッジ時間 4,837 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,084 KB
testcase_01 AC 40 ms
53,684 KB
testcase_02 AC 39 ms
54,004 KB
testcase_03 AC 432 ms
127,468 KB
testcase_04 AC 39 ms
53,580 KB
testcase_05 AC 40 ms
52,528 KB
testcase_06 AC 39 ms
52,616 KB
testcase_07 AC 38 ms
52,968 KB
testcase_08 AC 39 ms
52,088 KB
testcase_09 AC 39 ms
52,992 KB
testcase_10 AC 39 ms
51,876 KB
testcase_11 AC 39 ms
52,964 KB
testcase_12 AC 39 ms
52,132 KB
testcase_13 AC 39 ms
53,068 KB
testcase_14 AC 39 ms
53,952 KB
testcase_15 AC 60 ms
66,304 KB
testcase_16 AC 46 ms
58,708 KB
testcase_17 AC 40 ms
52,436 KB
testcase_18 AC 40 ms
52,348 KB
testcase_19 AC 40 ms
53,268 KB
testcase_20 AC 41 ms
53,332 KB
testcase_21 AC 460 ms
127,260 KB
testcase_22 AC 319 ms
118,228 KB
testcase_23 AC 448 ms
127,488 KB
testcase_24 AC 261 ms
104,644 KB
testcase_25 AC 451 ms
121,688 KB
testcase_26 AC 459 ms
127,384 KB
testcase_27 AC 39 ms
52,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import sys
sys.setrecursionlimit(10 ** 5)

N,S = map(int, input().split())
A = list(map(int, input().split()))
FA = A[:N//2]
SA = A[N//2:]
FL = []
SL = []

def dfsF(v,i):
    if len(FA)==i:
        FL.append(v)
    else:
        p = 1
        while FA[i]**p+v<=S:
            dfsF(FA[i]**p+v,i+1)
            p+=1

def dfsS(v,i):
    if len(SA)==i:
        SL.append(v)
    else:
        p = 1
        while SA[i]**p+v<=S:
            dfsS(SA[i]**p+v,i+1)
            p+=1

dfsF(0,0)
dfsS(0,0)
FL.sort()
SL.sort()
if N==1:
    print(len(FL)+len(SL)-1)
else:
    ans = 0
    for fl in FL:
        ans+=bisect.bisect_right(SL,S-fl)
    print(ans)

0