結果

問題 No.792 真理関数をつくろう
ユーザー dangodango
提出日時 2023-06-22 18:58:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 465 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 274,352 KB
最終ジャッジ日時 2024-06-30 01:32:53
合計ジャッジ時間 6,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,080 KB
testcase_01 AC 73 ms
75,880 KB
testcase_02 AC 38 ms
52,752 KB
testcase_03 AC 100 ms
76,520 KB
testcase_04 AC 39 ms
53,780 KB
testcase_05 AC 99 ms
76,756 KB
testcase_06 AC 790 ms
259,096 KB
testcase_07 AC 49 ms
71,396 KB
testcase_08 AC 37 ms
52,200 KB
testcase_09 AC 38 ms
53,964 KB
testcase_10 AC 38 ms
52,212 KB
testcase_11 AC 37 ms
52,200 KB
testcase_12 AC 40 ms
53,880 KB
testcase_13 AC 38 ms
53,352 KB
testcase_14 AC 37 ms
52,304 KB
testcase_15 AC 41 ms
56,600 KB
testcase_16 AC 179 ms
80,520 KB
testcase_17 AC 39 ms
54,044 KB
testcase_18 AC 38 ms
52,264 KB
testcase_19 AC 36 ms
53,212 KB
testcase_20 AC 72 ms
76,480 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
cnt = 0
ans = ""
for _ in range(2 ** N):
    QR = list(map(int, input().split()))
    if QR[-1] == 0:
        continue
    cnt += 1
    if cnt > 1:
        ans += "∨"
    ans += "("
    for i in range(N):
        if i != 0:
            ans += "∧"
        if QR[:N][i] == 0:
            ans += "¬"
        ans += "P_" + str(i + 1)
    ans += ")"
if cnt == 0:
    print("A=⊥")
elif cnt == 2 ** N:
    print("A=⊤")
else:
    print("A=" + ans)
0