結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 40 ms
57,088 KB
testcase_03 TLE -
testcase_04 AC 1,521 ms
85,580 KB
testcase_05 TLE -
testcase_06 AC 529 ms
78,360 KB
testcase_07 AC 314 ms
79,076 KB
testcase_08 AC 1,755 ms
81,752 KB
testcase_09 AC 878 ms
77,964 KB
testcase_10 AC 104 ms
76,672 KB
testcase_11 AC 369 ms
79,372 KB
testcase_12 AC 210 ms
78,316 KB
testcase_13 AC 363 ms
78,512 KB
testcase_14 AC 188 ms
78,084 KB
testcase_15 AC 696 ms
77,740 KB
testcase_16 AC 139 ms
77,824 KB
testcase_17 TLE -
testcase_18 AC 694 ms
80,348 KB
testcase_19 AC 97 ms
76,672 KB
testcase_20 AC 151 ms
77,696 KB
testcase_21 AC 134 ms
78,080 KB
testcase_22 AC 1,482 ms
83,840 KB
testcase_23 AC 108 ms
77,440 KB
testcase_24 AC 145 ms
78,024 KB
testcase_25 AC 1,077 ms
82,272 KB
testcase_26 AC 39 ms
51,968 KB
testcase_27 AC 40 ms
51,712 KB
testcase_28 AC 44 ms
52,352 KB
testcase_29 AC 48 ms
58,752 KB
testcase_30 AC 121 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