結果

問題 No.1929 Exponential Sequence
ユーザー roarisroaris
提出日時 2022-06-10 02:31:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 133,672 KB
最終ジャッジ日時 2024-09-21 05:40:43
合計ジャッジ時間 4,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 473 ms
126,492 KB
testcase_04 AC 45 ms
63,360 KB
testcase_05 AC 38 ms
52,992 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 41 ms
54,912 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 AC 39 ms
52,736 KB
testcase_11 AC 39 ms
52,736 KB
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 38 ms
52,608 KB
testcase_14 AC 39 ms
53,120 KB
testcase_15 AC 88 ms
76,288 KB
testcase_16 AC 57 ms
73,148 KB
testcase_17 AC 38 ms
52,992 KB
testcase_18 AC 38 ms
51,968 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 38 ms
53,120 KB
testcase_21 AC 383 ms
133,672 KB
testcase_22 AC 282 ms
113,480 KB
testcase_23 AC 378 ms
130,944 KB
testcase_24 AC 224 ms
105,312 KB
testcase_25 AC 382 ms
125,656 KB
testcase_26 AC 369 ms
126,560 KB
testcase_27 AC 38 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

def dfs1(s, dep):
    if s>S:
        return
    
    if dep==n//2:
        l1.append(s)
        return
    
    for k in range(1, 31):
        dfs1(s+pow(a[dep], k), dep+1)

def dfs2(s, dep):
    if s>S:
        return
    
    if dep==n:
        l2.append(s)
        return
    
    for k in range(1, 31):
        dfs2(s+pow(a[dep], k), dep+1)

n, S = map(int, input().split())
a = list(map(int, input().split()))
l1, l2 = [], []
dfs1(0, 0)
dfs2(0, n//2)
l2.sort()
ans = 0

for v in l1:
    ans += bisect_right(l2, S-v)

print(ans)
0