結果

問題 No.792 真理関数をつくろう
ユーザー gorugo30gorugo30
提出日時 2021-02-24 20:03:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 531 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,820 KB
最終ジャッジ日時 2024-09-24 20:16:10
合計ジャッジ時間 6,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,820 KB
testcase_01 AC 38 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 49 ms
10,752 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 50 ms
10,880 KB
testcase_06 AC 1,377 ms
11,464 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 185 ms
11,136 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 50 ms
10,624 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