結果

問題 No.1929 Exponential Sequence
ユーザー roarisroaris
提出日時 2022-06-10 02:30:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 491 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 233,020 KB
最終ジャッジ日時 2024-09-21 05:40:38
合計ジャッジ時間 18,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 49 ms
13,696 KB
testcase_03 AC 1,230 ms
80,328 KB
testcase_04 AC 769 ms
72,620 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 77 ms
14,464 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 59 ms
14,336 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 94 ms
17,792 KB
testcase_12 TLE -
testcase_13 AC 1,083 ms
128,440 KB
testcase_14 TLE -
testcase_15 AC 1,460 ms
108,124 KB
testcase_16 AC 71 ms
14,080 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 28 ms
11,008 KB
testcase_21 AC 1,233 ms
80,240 KB
testcase_22 AC 1,211 ms
80,244 KB
testcase_23 AC 1,216 ms
80,244 KB
testcase_24 AC 1,209 ms
80,240 KB
testcase_25 AC 1,231 ms
80,428 KB
testcase_26 AC 1,253 ms
80,248 KB
testcase_27 AC 92 ms
17,664 KB
権限があれば一括ダウンロードができます

ソースコード

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