結果

問題 No.792 真理関数をつくろう
ユーザー tsunabittsunabit
提出日時 2019-07-12 21:47:15
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,004 bytes
コンパイル時間 3,229 ms
コンパイル使用メモリ 79,480 KB
実行使用メモリ 67,900 KB
最終ジャッジ日時 2024-11-18 19:58:30
合計ジャッジ時間 13,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
42,412 KB
testcase_01 AC 269 ms
48,716 KB
testcase_02 AC 158 ms
42,504 KB
testcase_03 AC 347 ms
48,684 KB
testcase_04 AC 146 ms
42,564 KB
testcase_05 AC 343 ms
48,288 KB
testcase_06 AC 1,196 ms
49,380 KB
testcase_07 AC 238 ms
47,992 KB
testcase_08 AC 147 ms
42,668 KB
testcase_09 AC 153 ms
42,600 KB
testcase_10 AC 146 ms
42,728 KB
testcase_11 AC 149 ms
42,480 KB
testcase_12 AC 159 ms
42,944 KB
testcase_13 AC 144 ms
42,560 KB
testcase_14 AC 158 ms
42,504 KB
testcase_15 AC 207 ms
45,948 KB
testcase_16 AC 556 ms
49,612 KB
testcase_17 AC 180 ms
43,652 KB
testcase_18 AC 143 ms
42,604 KB
testcase_19 AC 156 ms
42,536 KB
testcase_20 AC 447 ms
48,676 KB
testcase_21 TLE -
testcase_22 AC 151 ms
42,604 KB
testcase_23 AC 124 ms
41,156 KB
testcase_24 AC 158 ms
42,416 KB
testcase_25 AC 163 ms
42,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No792 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	String o = "A=";
    	int[][] q = new int[(int)Math.pow(2, n)][n+1];
    	int c = 0;
    	// ∧∨¬⊥⊤
    	for(int i = 0; i < Math.pow(2, n); i++) {
    		for(int j = 0; j < n + 1; j++) {
    			q[i][j] = sc.nextInt();
    		}
    	}
    	
    	for(int i = 0; i < Math.pow(2, n); i++) {
    		if(q[i][n] == 1) {
    			c++;
    			o += "(";
    			for(int j = 0; j < n; j++) {
    				if(q[i][j] == 1) o += "P_" + (j+1) + "∧";
    				else o += "¬P_" + (j+1) + "∧";
        		}
    			o += ")";
    		}
    	}
    	if(c == 0) {
    		System.out.println("A=⊥");
    	}else if(c == (int)Math.pow(2, n)) {
    		System.out.println("A=⊤");
    	}else {
    		o = o.replaceAll("∧\\)\\(", "\\)∨\\(");
        	o = o.replaceAll("∧\\)", "\\)");
        	System.out.println(o);
    	}
    }
}
0