結果

問題 No.1560 majority x majority
ユーザー vwxyzvwxyz
提出日時 2024-06-02 06:40:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 380 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 159,784 KB
最終ジャッジ日時 2024-12-23 00:57:19
合計ジャッジ時間 30,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 43 ms
56,960 KB
testcase_03 TLE -
testcase_04 AC 1,612 ms
85,444 KB
testcase_05 TLE -
testcase_06 AC 500 ms
77,828 KB
testcase_07 AC 308 ms
79,328 KB
testcase_08 AC 1,597 ms
81,340 KB
testcase_09 AC 811 ms
77,948 KB
testcase_10 AC 104 ms
76,672 KB
testcase_11 AC 377 ms
79,108 KB
testcase_12 AC 201 ms
78,332 KB
testcase_13 AC 347 ms
78,772 KB
testcase_14 AC 194 ms
78,308 KB
testcase_15 AC 638 ms
77,868 KB
testcase_16 AC 133 ms
77,696 KB
testcase_17 TLE -
testcase_18 AC 662 ms
80,356 KB
testcase_19 AC 94 ms
76,416 KB
testcase_20 AC 141 ms
77,568 KB
testcase_21 AC 134 ms
78,080 KB
testcase_22 AC 1,362 ms
83,460 KB
testcase_23 AC 102 ms
76,928 KB
testcase_24 AC 143 ms
77,752 KB
testcase_25 AC 1,066 ms
81,888 KB
testcase_26 AC 43 ms
51,840 KB
testcase_27 AC 40 ms
51,584 KB
testcase_28 AC 43 ms
52,096 KB
testcase_29 AC 48 ms
58,624 KB
testcase_30 AC 118 ms
159,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
S=[list(map(int,input().split())) for n in range(N)]
dp=[0]*(1<<M)
dp[0]=1
for bit in range(1<<M):
    idx=[n for n in range(N) if all(S[n][m] for m in range(M) if bit&1<<m)]
    for m in range(M):
        if bit&1<<m:
            continue
        if sum(S[n][m] for n in idx)*2>=len(idx):
            dp[bit|1<<m]+=dp[bit]
ans=dp[(1<<M)-1]
print(ans)
0