結果

問題 No.1929 Exponential Sequence
ユーザー roarisroaris
提出日時 2022-06-10 02:29:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 491 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 384,200 KB
最終ジャッジ日時 2024-09-21 05:40:16
合計ジャッジ時間 6,975 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,104 KB
testcase_01 AC 49 ms
66,740 KB
testcase_02 AC 94 ms
79,280 KB
testcase_03 AC 405 ms
134,476 KB
testcase_04 AC 1,680 ms
217,464 KB
testcase_05 AC 38 ms
55,240 KB
testcase_06 AC 34 ms
52,676 KB
testcase_07 AC 161 ms
82,636 KB
testcase_08 AC 36 ms
52,492 KB
testcase_09 AC 114 ms
80,272 KB
testcase_10 AC 40 ms
56,488 KB
testcase_11 AC 175 ms
85,776 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

def dfs1(s, dep):
    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 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