結果

問題 No.792 真理関数をつくろう
ユーザー dangodango
提出日時 2023-06-24 17:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,839 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 750 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 262,736 KB
最終ジャッジ日時 2024-07-01 20:49:45
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,300 KB
testcase_01 AC 66 ms
75,764 KB
testcase_02 AC 36 ms
53,256 KB
testcase_03 AC 86 ms
76,504 KB
testcase_04 AC 36 ms
52,088 KB
testcase_05 AC 85 ms
76,112 KB
testcase_06 AC 535 ms
258,508 KB
testcase_07 AC 47 ms
70,764 KB
testcase_08 AC 37 ms
51,700 KB
testcase_09 AC 37 ms
52,136 KB
testcase_10 AC 37 ms
53,032 KB
testcase_11 AC 36 ms
53,364 KB
testcase_12 AC 37 ms
52,568 KB
testcase_13 AC 37 ms
52,604 KB
testcase_14 AC 36 ms
52,744 KB
testcase_15 AC 40 ms
55,380 KB
testcase_16 AC 140 ms
78,776 KB
testcase_17 AC 39 ms
53,184 KB
testcase_18 AC 38 ms
52,276 KB
testcase_19 AC 37 ms
53,228 KB
testcase_20 AC 73 ms
76,504 KB
testcase_21 AC 1,839 ms
262,736 KB
testcase_22 AC 37 ms
53,076 KB
testcase_23 AC 38 ms
52,124 KB
testcase_24 AC 37 ms
52,508 KB
testcase_25 AC 37 ms
53,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [list(map(int, input().split())) for _ in range(1 << n)]
all_true = True
all_false = True
ans = "A="
for i in range(1 << n):
    if a[i][n] == 1:
        all_false = False
        if len(ans) > 2:
            ans += "∨"
        ans += "("
        for j in range(n):
            if j > 0:
                ans += "∧"
            if a[i][j] == 0:
                ans += "¬"
            ans += "P_" + str(j+1)
        ans += ")"
    else:
        all_true = False
if all_true:
    ans = "A=⊤"
elif all_false:
    ans = "A=⊥"
print(ans)
0