結果

問題 No.733 分身並列コーディング
ユーザー convexineqconvexineq
提出日時 2021-03-17 19:49:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 747 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 73,232 KB
最終ジャッジ日時 2024-11-15 14:04:45
合計ジャッジ時間 5,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,364 KB
testcase_01 AC 35 ms
53,724 KB
testcase_02 AC 34 ms
52,888 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
60,468 KB
testcase_06 AC 35 ms
52,568 KB
testcase_07 WA -
testcase_08 AC 68 ms
65,592 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 35 ms
53,604 KB
testcase_13 AC 35 ms
52,820 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 37 ms
53,484 KB
testcase_17 AC 40 ms
59,316 KB
testcase_18 AC 52 ms
64,560 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 43 ms
60,608 KB
testcase_26 AC 36 ms
52,416 KB
testcase_27 AC 52 ms
64,316 KB
testcase_28 AC 69 ms
65,288 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 58 ms
64,404 KB
testcase_33 WA -
testcase_34 AC 55 ms
64,824 KB
testcase_35 AC 57 ms
64,736 KB
testcase_36 AC 57 ms
65,560 KB
testcase_37 AC 55 ms
65,872 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 57 ms
64,820 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def zeta_to_high(res,n):
    for i in range(n):
        i = 1<<i
        for j in range(1<<n):
            if j&i: res[j] += res[j^i]

def mobius_to_high(res,n):
    for i in range(n):
        i = 1<<i
        for j in range(1<<n):
            if j&i: res[j] -= res[j^i]

T,n,*a = map(int,open(0).read().split())
N = 1<<n
lst = [0]*N
for i in range(n):
    for j in range(1<<i):
        lst[j+(1<<i)] = lst[j] + a[i]
for i in range(N):
    lst[i] = int(lst[i] <= T)

if lst[-1]==1:
    print(1)
    exit()

MOD = 10**9+7
ans = 1
zeta_to_high(lst,n)
res = lst[:] 
while True:
    ans += 1
    for i in range(N):
        res[i] *= lst[i]
        res[i] %= MOD
    after = res[:]
    mobius_to_high(after,n)
    if after[-1]:
        break
print(ans)
0