結果

問題 No.792 真理関数をつくろう
ユーザー miya145592miya145592
提出日時 2023-06-27 02:57:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-07-03 21:31:17
合計ジャッジ時間 2,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 63 ms
66,816 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 67 ms
72,448 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 67 ms
72,576 KB
testcase_06 AC 92 ms
78,108 KB
testcase_07 AC 46 ms
60,800 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 36 ms
52,328 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 37 ms
51,712 KB
testcase_15 AC 38 ms
53,376 KB
testcase_16 AC 87 ms
77,344 KB
testcase_17 AC 37 ms
52,736 KB
testcase_18 AC 35 ms
51,968 KB
testcase_19 AC 36 ms
52,352 KB
testcase_20 AC 75 ms
77,184 KB
testcase_21 AC 97 ms
80,000 KB
testcase_22 AC 37 ms
51,940 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 35 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
QR = [list(map(int, input().split())) for _ in range(2**N)]

AND = "∧"
OR = "∨"
NOT = "¬"
TOP = "⊥"
BOTTOM = "⊤"

s = 0
ans = []
for i in range(2**N):
    r = QR[i][-1]
    s += r
    if r==1:
        temp = []
        for j in range(N):
            if QR[i][j]==1:
                temp.append(f"P_{j+1}")
            else:
                temp.append(f"{NOT}P_{j+1}")
        ans.append("(" + AND.join(temp) + ")")

if s==0:
    print(f"A={BOTTOM}")
    exit()
elif s==2**N:
    print(f"A={TOP}")
    exit()

print("A=" + OR.join(ans))
0