結果

問題 No.1530 Permutation and Popcount
ユーザー convexineqconvexineq
提出日時 2021-06-08 19:00:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,024 KB
最終ジャッジ日時 2024-05-03 17:38:03
合計ジャッジ時間 4,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 34 ms
52,608 KB
testcase_03 AC 33 ms
52,480 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 33 ms
52,480 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 33 ms
52,096 KB
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 39 ms
53,120 KB
testcase_11 AC 69 ms
75,528 KB
testcase_12 AC 86 ms
75,528 KB
testcase_13 AC 44 ms
61,568 KB
testcase_14 AC 71 ms
75,776 KB
testcase_15 AC 52 ms
68,096 KB
testcase_16 AC 44 ms
61,312 KB
testcase_17 AC 75 ms
75,776 KB
testcase_18 AC 67 ms
75,524 KB
testcase_19 AC 35 ms
51,968 KB
testcase_20 AC 37 ms
52,352 KB
testcase_21 AC 74 ms
75,648 KB
testcase_22 AC 77 ms
75,588 KB
testcase_23 AC 72 ms
75,732 KB
testcase_24 AC 45 ms
61,056 KB
testcase_25 AC 70 ms
75,520 KB
testcase_26 AC 53 ms
66,176 KB
testcase_27 AC 85 ms
75,764 KB
testcase_28 AC 78 ms
75,760 KB
testcase_29 AC 50 ms
66,176 KB
testcase_30 AC 34 ms
52,096 KB
testcase_31 AC 87 ms
75,648 KB
testcase_32 AC 86 ms
75,676 KB
testcase_33 AC 89 ms
75,632 KB
testcase_34 AC 88 ms
75,652 KB
testcase_35 AC 90 ms
75,776 KB
testcase_36 AC 91 ms
75,520 KB
testcase_37 AC 88 ms
75,644 KB
testcase_38 AC 93 ms
76,024 KB
testcase_39 AC 92 ms
75,648 KB
testcase_40 AC 90 ms
75,904 KB
testcase_41 AC 90 ms
75,648 KB
testcase_42 AC 90 ms
75,668 KB
testcase_43 AC 82 ms
75,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
L = [sum(1-bin(i*j).count("1")%2 for j in range(1,n+1)) for i in range(1,n+1)]
v = 1
dp = [1]
for i in L:
    v |= v<<i
    dp.append(v)
m += sum(L)
if m%2 or dp[-1]>>(m//2)&1==0:
    print(-1)
    exit()
m //= 2
P = []
Q = []
for i,v in enumerate(L[::-1]):
    if m < v or dp[n-i-1]>>(m-v)&1==0:
        Q.append(n-i)
    else:
        P.append(n-i)
        m -= v
print(len(P),len(Q))
print(*P)
print(*Q)
0