結果

問題 No.792 真理関数をつくろう
ユーザー tentententen
提出日時 2021-02-10 13:33:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 1,463 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 77,632 KB
実行使用メモリ 57,680 KB
最終ジャッジ日時 2024-07-08 00:07:45
合計ジャッジ時間 6,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,116 KB
testcase_01 AC 157 ms
54,424 KB
testcase_02 AC 113 ms
53,764 KB
testcase_03 AC 169 ms
54,144 KB
testcase_04 AC 111 ms
53,676 KB
testcase_05 AC 174 ms
54,484 KB
testcase_06 AC 215 ms
57,208 KB
testcase_07 AC 141 ms
54,292 KB
testcase_08 AC 114 ms
53,952 KB
testcase_09 AC 116 ms
54,056 KB
testcase_10 AC 100 ms
52,812 KB
testcase_11 AC 100 ms
52,528 KB
testcase_12 AC 103 ms
52,996 KB
testcase_13 AC 98 ms
52,532 KB
testcase_14 AC 112 ms
53,908 KB
testcase_15 AC 143 ms
54,156 KB
testcase_16 AC 186 ms
56,784 KB
testcase_17 AC 117 ms
53,780 KB
testcase_18 AC 100 ms
52,624 KB
testcase_19 AC 110 ms
53,692 KB
testcase_20 AC 180 ms
57,072 KB
testcase_21 AC 224 ms
57,680 KB
testcase_22 AC 112 ms
53,832 KB
testcase_23 AC 125 ms
53,692 KB
testcase_24 AC 115 ms
54,124 KB
testcase_25 AC 117 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.nextLine());
        StringBuilder sb = new StringBuilder();
        int trueCount = 0;
        int falseCount = 0;
        sb.append("A=");
        boolean isFirst = true;
        for (int i = 0; i < (1 << n); i++) {
            char[] line = sc.nextLine().toCharArray();
            boolean[] tfs = new boolean[n + 1];
            for (int j = 0; j < line.length; j += 2) {
                tfs[j / 2] = (line[j] == '1');
            }
            if (tfs[n]) {
                trueCount++;
                if (!isFirst) {
                    sb.append("∨");
                }
                isFirst = false;
                sb.append("(");
                for (int j = 0; j < n; j++) {
                    if (j > 0) {
                        sb.append("∧");
                    }
                    if (!tfs[j]) {
                        sb.append("¬");
                    }
                    sb.append("P_").append(j + 1);
                }
                sb.append(")");
            } else {
                falseCount++;
            }
        }
        if (trueCount == (1 << n)) {
            System.out.println("A=⊤");
        } else if (falseCount == (1 << n)) {
            System.out.println("A=⊥");
        } else {
            System.out.println(sb);
        }
    }
}
0