結果

問題 No.792 真理関数をつくろう
ユーザー tsunabittsunabit
提出日時 2019-07-12 22:00:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 3,741 ms
コンパイル使用メモリ 79,324 KB
実行使用メモリ 51,868 KB
最終ジャッジ日時 2024-11-18 20:19:32
合計ジャッジ時間 11,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
41,728 KB
testcase_01 AC 274 ms
46,276 KB
testcase_02 AC 156 ms
41,916 KB
testcase_03 AC 311 ms
48,268 KB
testcase_04 AC 153 ms
41,608 KB
testcase_05 AC 310 ms
48,320 KB
testcase_06 AC 560 ms
48,900 KB
testcase_07 AC 239 ms
44,060 KB
testcase_08 AC 151 ms
41,356 KB
testcase_09 AC 157 ms
41,760 KB
testcase_10 AC 159 ms
41,804 KB
testcase_11 AC 140 ms
40,376 KB
testcase_12 AC 169 ms
42,192 KB
testcase_13 AC 153 ms
41,836 KB
testcase_14 AC 150 ms
41,668 KB
testcase_15 AC 222 ms
43,096 KB
testcase_16 AC 384 ms
48,128 KB
testcase_17 AC 204 ms
42,060 KB
testcase_18 AC 141 ms
40,256 KB
testcase_19 AC 153 ms
41,560 KB
testcase_20 AC 476 ms
48,676 KB
testcase_21 AC 614 ms
51,868 KB
testcase_22 AC 154 ms
41,604 KB
testcase_23 AC 130 ms
41,520 KB
testcase_24 AC 139 ms
40,612 KB
testcase_25 AC 164 ms
41,672 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();
    	StringBuilder sb = new StringBuilder();
    	sb.append("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++;
    			sb.append("(");
    			for(int j = 0; j < n; j++) {
    				if(q[i][j] == 1)  sb.append("P_" + (j+1) + "∧");
    				else sb.append("¬P_" + (j+1) + "∧");
        		}
    			sb.append(")");
    			
    		}
    	}
    	if(c == 0) {
    		System.out.println("A=⊥");
    	}else if(c == (int)Math.pow(2, n)) {
    		System.out.println("A=⊤");
    	}else {
    		String str = "";
    		str = sb.toString().replaceAll("∧\\)\\(", "\\)∨\\(");
        	str = str.toString().replaceAll("∧\\)", "\\)");
        	System.out.println(str);
    	}
    }
}
0