結果

問題 No.792 真理関数をつくろう
ユーザー tsunabittsunabit
提出日時 2019-07-11 23:37:31
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,125 bytes
コンパイル時間 3,660 ms
コンパイル使用メモリ 79,340 KB
実行使用メモリ 61,636 KB
最終ジャッジ日時 2024-11-08 20:00:12
合計ジャッジ時間 14,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
42,548 KB
testcase_01 AC 310 ms
48,492 KB
testcase_02 AC 149 ms
42,220 KB
testcase_03 AC 387 ms
48,692 KB
testcase_04 AC 162 ms
42,564 KB
testcase_05 AC 387 ms
49,128 KB
testcase_06 AC 1,158 ms
49,440 KB
testcase_07 AC 264 ms
47,424 KB
testcase_08 AC 165 ms
42,476 KB
testcase_09 AC 180 ms
42,720 KB
testcase_10 AC 178 ms
42,676 KB
testcase_11 AC 165 ms
42,432 KB
testcase_12 AC 178 ms
42,712 KB
testcase_13 AC 168 ms
42,516 KB
testcase_14 AC 164 ms
42,596 KB
testcase_15 AC 231 ms
45,648 KB
testcase_16 AC 620 ms
50,100 KB
testcase_17 AC 211 ms
42,808 KB
testcase_18 AC 166 ms
42,560 KB
testcase_19 AC 149 ms
42,368 KB
testcase_20 AC 482 ms
48,424 KB
testcase_21 TLE -
testcase_22 AC 158 ms
42,304 KB
testcase_23 AC 128 ms
41,364 KB
testcase_24 AC 124 ms
41,208 KB
testcase_25 AC 170 ms
42,456 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];
    	boolean f0 = false, f1 = false;
    	// ∧∨¬⊥⊤
    	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] == 0) f0 = true;
    			else f1 = true;
    	}
    	if(f0 && !f1) {
    		System.out.println("A=⊥");
    		return;
    	}else if(!f0 && f1) {
    		System.out.println("A=⊤");
    		return;
    	}
    	
    	for(int i = 0; i < Math.pow(2, n); i++) {
    		if(q[i][n] == 1) {
    			o += "(";
    			for(int j = 0; j < n; j++) {
    				if(q[i][j] == 1) o += "P_" + (j+1) + "∧";
    				else o += "¬P_" + (j+1) + "∧";
        		}
    			o += ")";
    		}
    	}
    	o = o.replaceAll("∧\\)\\(", "\\)∨\\(");
    	o = o.replaceAll("∧\\)", "\\)");
    	System.out.println(o);
    }
}
0