結果

問題 No.792 真理関数をつくろう
ユーザー miya145592miya145592
提出日時 2023-06-27 02:58:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-07-03 21:32:09
合計ジャッジ時間 3,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 56 ms
66,432 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 69 ms
72,320 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 68 ms
73,088 KB
testcase_06 AC 93 ms
78,336 KB
testcase_07 AC 47 ms
60,544 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 37 ms
52,736 KB
testcase_11 AC 37 ms
51,936 KB
testcase_12 AC 38 ms
52,864 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 37 ms
52,608 KB
testcase_15 AC 39 ms
53,632 KB
testcase_16 AC 88 ms
77,284 KB
testcase_17 AC 37 ms
52,992 KB
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 36 ms
52,224 KB
testcase_20 AC 74 ms
77,312 KB
testcase_21 AC 94 ms
79,488 KB
testcase_22 AC 36 ms
53,204 KB
testcase_23 AC 36 ms
52,308 KB
testcase_24 AC 36 ms
52,460 KB
testcase_25 AC 36 ms
53,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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