結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 46 ms
57,088 KB
testcase_03 TLE -
testcase_04 AC 1,764 ms
85,828 KB
testcase_05 TLE -
testcase_06 AC 513 ms
78,236 KB
testcase_07 AC 302 ms
78,940 KB
testcase_08 AC 1,627 ms
81,472 KB
testcase_09 AC 810 ms
78,084 KB
testcase_10 AC 94 ms
76,928 KB
testcase_11 AC 358 ms
79,240 KB
testcase_12 AC 190 ms
78,592 KB
testcase_13 AC 328 ms
78,516 KB
testcase_14 AC 177 ms
78,440 KB
testcase_15 AC 621 ms
77,596 KB
testcase_16 AC 127 ms
77,696 KB
testcase_17 TLE -
testcase_18 AC 633 ms
80,480 KB
testcase_19 AC 94 ms
76,544 KB
testcase_20 AC 141 ms
77,824 KB
testcase_21 AC 127 ms
78,080 KB
testcase_22 AC 1,272 ms
83,712 KB
testcase_23 AC 96 ms
77,056 KB
testcase_24 AC 134 ms
77,500 KB
testcase_25 AC 1,032 ms
82,144 KB
testcase_26 AC 40 ms
51,840 KB
testcase_27 AC 41 ms
51,840 KB
testcase_28 AC 38 ms
51,968 KB
testcase_29 AC 47 ms
58,880 KB
testcase_30 AC 113 ms
159,528 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