結果

問題 No.1560 majority x majority
ユーザー hir355hir355
提出日時 2021-06-25 23:21:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 513 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 78,212 KB
最終ジャッジ日時 2024-06-25 08:53:18
合計ジャッジ時間 15,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,705 ms
78,032 KB
testcase_02 AC 37 ms
52,284 KB
testcase_03 AC 760 ms
77,708 KB
testcase_04 AC 341 ms
78,212 KB
testcase_05 AC 969 ms
77,720 KB
testcase_06 AC 191 ms
76,820 KB
testcase_07 AC 115 ms
77,064 KB
testcase_08 AC 673 ms
77,592 KB
testcase_09 AC 321 ms
76,804 KB
testcase_10 AC 74 ms
73,980 KB
testcase_11 AC 131 ms
77,096 KB
testcase_12 AC 95 ms
77,228 KB
testcase_13 AC 136 ms
76,988 KB
testcase_14 AC 98 ms
77,060 KB
testcase_15 AC 263 ms
76,512 KB
testcase_16 AC 97 ms
77,028 KB
testcase_17 AC 789 ms
77,644 KB
testcase_18 AC 232 ms
77,436 KB
testcase_19 AC 76 ms
72,756 KB
testcase_20 AC 93 ms
77,224 KB
testcase_21 AC 99 ms
77,476 KB
testcase_22 AC 406 ms
77,616 KB
testcase_23 AC 76 ms
74,948 KB
testcase_24 AC 93 ms
77,092 KB
testcase_25 AC 342 ms
77,440 KB
testcase_26 AC 40 ms
52,776 KB
testcase_27 AC 40 ms
53,784 KB
testcase_28 AC 40 ms
52,752 KB
testcase_29 AC 46 ms
60,444 KB
testcase_30 AC 56 ms
65,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
s = [list(map(int, input().split())) for _ in range(n)]
dp = [0] * (1 << m)
dp[0] = 1
for i in range(1 << m):
    cnt = [0] * m
    t = 0
    for k in range(n):
        for j in range(m):
            if s[k][j] == 0 and (i >> j) & 1:
                break
        else:
            t += 1
            for j in range(m):
                cnt[j] += s[k][j]
    for j in range(m):
        if((i >> j) & 1) == 0 and cnt[j] * 2 >= t:
            dp[i | (1 << j)] += dp[i]
print(dp[-1])
0