結果

問題 No.792 真理関数をつくろう
ユーザー kohei2019kohei2019
提出日時 2022-04-10 22:08:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 79,084 KB
最終ジャッジ日時 2024-12-14 11:53:57
合計ジャッジ時間 2,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,336 KB
testcase_01 AC 62 ms
68,288 KB
testcase_02 AC 39 ms
53,276 KB
testcase_03 AC 73 ms
74,608 KB
testcase_04 AC 40 ms
53,168 KB
testcase_05 AC 75 ms
74,248 KB
testcase_06 AC 104 ms
78,496 KB
testcase_07 AC 50 ms
62,368 KB
testcase_08 AC 39 ms
52,148 KB
testcase_09 AC 39 ms
52,764 KB
testcase_10 AC 39 ms
53,436 KB
testcase_11 AC 40 ms
52,748 KB
testcase_12 AC 41 ms
52,860 KB
testcase_13 AC 40 ms
52,072 KB
testcase_14 AC 39 ms
52,364 KB
testcase_15 AC 45 ms
59,556 KB
testcase_16 AC 95 ms
77,100 KB
testcase_17 AC 41 ms
53,084 KB
testcase_18 AC 40 ms
52,816 KB
testcase_19 AC 40 ms
52,316 KB
testcase_20 AC 80 ms
76,588 KB
testcase_21 AC 102 ms
79,084 KB
testcase_22 AC 40 ms
52,820 KB
testcase_23 AC 39 ms
52,632 KB
testcase_24 AC 40 ms
53,444 KB
testcase_25 AC 41 ms
52,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsR = []
lsQ = []
for i in range(2**N):
    ls = list(map(int,input().split()))
    Q = ls[:-1]
    R = ls[-1]
    lsQ.append(Q)
    lsR.append(R)
ans = ['A=']
if lsR.count(0)==0:
    print('A=⊤')
elif lsR.count(1)==0:
    print('A=⊥')
else:
    for i in range(2**N):
        l = []
        l.append('(')
        if lsR[i] == 1:
            for j in range(N):
                if lsQ[i][j] == 1:
                    l.append('P_{}'.format(j+1))
                else:
                    l.append('¬P_{}'.format(j+1))
                l.append('∧')
            l.pop()
            l.append(')')
            ans.append(''.join(l))
            ans.append('∨')
    ans.pop()
    print(''.join(ans))

0