結果

問題 No.792 真理関数をつくろう
ユーザー gorugo30gorugo30
提出日時 2021-02-24 20:03:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 531 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 274,644 KB
最終ジャッジ日時 2024-09-24 20:15:38
合計ジャッジ時間 5,858 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,496 KB
testcase_01 AC 70 ms
75,808 KB
testcase_02 AC 37 ms
52,412 KB
testcase_03 AC 98 ms
76,512 KB
testcase_04 AC 37 ms
52,372 KB
testcase_05 AC 91 ms
76,700 KB
testcase_06 AC 757 ms
259,084 KB
testcase_07 AC 47 ms
70,400 KB
testcase_08 AC 36 ms
53,136 KB
testcase_09 AC 37 ms
52,776 KB
testcase_10 AC 37 ms
52,388 KB
testcase_11 AC 37 ms
52,820 KB
testcase_12 AC 37 ms
53,584 KB
testcase_13 AC 36 ms
52,580 KB
testcase_14 AC 36 ms
52,924 KB
testcase_15 AC 40 ms
56,796 KB
testcase_16 AC 188 ms
80,564 KB
testcase_17 AC 39 ms
53,664 KB
testcase_18 AC 37 ms
53,252 KB
testcase_19 AC 37 ms
52,356 KB
testcase_20 AC 72 ms
76,340 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

cnt1 = 0
ans = "A="
katu = "∧"
mataha = "∨"
hitei = "¬"
for iiii in range(1 << N):
    QR = list(map(int, input().split()))
    R = QR[-1]
    if R == 0:
        continue
    Q = QR[:N]
    cnt1 += 1
    if cnt1 > 1:
        ans += mataha
    ans += "("
    for i in range(N):
        if i != 0:
            ans += katu
        if Q[i] == 0:
            ans += hitei
        ans += "P_" + str(i + 1)
    ans += ")"
if cnt1 == 0:
    print("A=⊥")
elif cnt1 == 1 << N:
    print("A=⊤")
else:
    print(ans)
0