結果

問題 No.792 真理関数をつくろう
ユーザー keymoonkeymoon
提出日時 2019-02-22 21:47:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 1,644 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 111,092 KB
実行使用メモリ 29,800 KB
最終ジャッジ日時 2024-11-25 07:56:38
合計ジャッジ時間 2,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,160 KB
testcase_01 AC 27 ms
25,156 KB
testcase_02 AC 25 ms
23,220 KB
testcase_03 AC 29 ms
27,284 KB
testcase_04 AC 26 ms
27,208 KB
testcase_05 AC 29 ms
27,160 KB
testcase_06 AC 41 ms
27,272 KB
testcase_07 AC 26 ms
25,276 KB
testcase_08 AC 25 ms
25,292 KB
testcase_09 AC 27 ms
25,036 KB
testcase_10 AC 25 ms
25,168 KB
testcase_11 AC 25 ms
27,288 KB
testcase_12 AC 25 ms
25,372 KB
testcase_13 AC 25 ms
25,264 KB
testcase_14 AC 24 ms
25,156 KB
testcase_15 AC 26 ms
25,164 KB
testcase_16 AC 34 ms
23,304 KB
testcase_17 AC 26 ms
25,264 KB
testcase_18 AC 25 ms
25,292 KB
testcase_19 AC 26 ms
25,264 KB
testcase_20 AC 37 ms
27,164 KB
testcase_21 AC 46 ms
29,800 KB
testcase_22 AC 27 ms
25,120 KB
testcase_23 AC 27 ms
23,092 KB
testcase_24 AC 26 ms
25,040 KB
testcase_25 AC 25 ms
25,036 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using System.Diagnostics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;

class P
{
    static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        StringBuilder builder = new StringBuilder();
        builder.Append("A=");
        bool IsFirst = true;
        int max = 1 << n;
        bool IsAllTrue = true;
        for (int i = 0; i < max; i++)
        {
            var q = Console.ReadLine().Split().Select(int.Parse).ToList();
            if (q.Last() != 1)
            {
                IsAllTrue = false;
                continue;
            }
            if (!IsFirst) builder.Append("∨");
            else IsFirst = false;
            builder.Append("(");
            for (int j = 0; j < n; j++)
            {
                if (q[j] == 0) builder.Append("¬");
                builder.Append("P_");
                builder.Append(j + 1);
                if (j != n - 1) builder.Append("∧");
            }
            builder.Append(")");
        }
        if (IsFirst) builder.Append("⊥");
        if (IsAllTrue) Console.WriteLine("A=⊤");
        else Console.WriteLine(builder.ToString());
    }

    static long Power(long n, long m)
    {
        const int mod = 1000000007;
        long pow = n;
        long res = 1;
        while (m > 0)
        {
            if ((m & 1) == 1) res = (res * pow) % mod;
            pow = (pow * pow) % mod;
            m >>= 1;
        }
        return res;
    }
}
0