結果

問題 No.792 真理関数をつくろう
ユーザー ixTL255ixTL255
提出日時 2019-09-10 22:23:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 3,164 ms
コンパイル使用メモリ 107,136 KB
実行使用メモリ 23,656 KB
最終ジャッジ日時 2024-07-02 16:26:20
合計ジャッジ時間 4,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
19,584 KB
testcase_01 AC 28 ms
19,840 KB
testcase_02 AC 25 ms
19,200 KB
testcase_03 AC 29 ms
20,352 KB
testcase_04 AC 26 ms
19,584 KB
testcase_05 AC 30 ms
20,224 KB
testcase_06 AC 44 ms
23,656 KB
testcase_07 AC 27 ms
19,200 KB
testcase_08 AC 26 ms
19,328 KB
testcase_09 AC 28 ms
19,456 KB
testcase_10 AC 28 ms
19,584 KB
testcase_11 AC 29 ms
19,328 KB
testcase_12 AC 29 ms
19,328 KB
testcase_13 AC 29 ms
19,328 KB
testcase_14 AC 26 ms
19,328 KB
testcase_15 AC 27 ms
19,584 KB
testcase_16 AC 35 ms
21,196 KB
testcase_17 AC 27 ms
19,328 KB
testcase_18 AC 27 ms
19,328 KB
testcase_19 AC 28 ms
19,584 KB
testcase_20 AC 41 ms
22,400 KB
testcase_21 AC 53 ms
23,552 KB
testcase_22 AC 27 ms
19,328 KB
testcase_23 AC 25 ms
19,200 KB
testcase_24 AC 26 ms
19,072 KB
testcase_25 AC 27 ms
19,456 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.Collections.Generic;
using System.Linq;
using System.Text;

public class Yuki792
{
	public static void Main()
	{
		var n = int.Parse(Console.ReadLine());
		Console.Write("A=");
		
		string q = "";
		var cnt = 0;
		var ans = new StringBuilder();
		
		while((q = Console.ReadLine()) != null)
		{
			var qij = q.Split().Select(x => int.Parse(x)).ToList();
			if(qij[qij.Count() - 1] == 0) continue;
			else
			{
				cnt++;
				ans.Append("(");
				for(var i = 0; i < qij.Count() - 1; ++i)
				{
					if(qij[i] != 1) ans.Append("¬");
					ans.Append("P_" + (i + 1) + "∧");
				}
				ans.Remove(ans.Length - 1, 1);
				ans.Append(")∨");
			}
		}
		
		if(ans.Length == 0)
		{
			Console.WriteLine("⊥");
			return;
		}
		
		ans.Remove(ans.Length - 1, 1);

		if(cnt == Math.Pow(2, n)) Console.WriteLine("⊤");
		else Console.WriteLine(ans.ToString());
	}
}
0