結果
問題 | No.792 真理関数をつくろう |
ユーザー | stng |
提出日時 | 2022-06-26 12:04:18 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
MLE
(最初)
|
実行時間 | - |
コード長 | 646 bytes |
コンパイル時間 | 1,176 ms |
コンパイル使用メモリ | 82,196 KB |
実行使用メモリ | 849,036 KB |
最終ジャッジ日時 | 2024-11-16 14:15:43 |
合計ジャッジ時間 | 35,797 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | MLE | - |
testcase_04 | WA | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | WA | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | OLE | - |
testcase_21 | MLE | - |
testcase_22 | WA | - |
testcase_23 | AC | 39 ms
51,456 KB |
testcase_24 | AC | 37 ms
52,096 KB |
testcase_25 | MLE | - |
ソースコード
n = int(input()) q = [[int(i) for i in input().split()] for j in range(2**n)] ans = "A=" f = False f_all = True for i in range(2**n): if q[i][-1] == 1: if ans != "A=": ans += ans.join("∨") f = True ans += ans.join("(") for j in range(n): if q[i][j] == 1: ans += ans.join("P_"+str(j+1)) else: ans += ans.join("¬P_"+str(j+1)) if j != n-1: ans += ans.join("∧") ans += ans.join(")") else: f_all = False if f == False: ans = "A=⊥" elif f_all == True: ans = "A=⊤" print(ans)