結果

問題 No.2090 否定論理積と充足可能性
ユーザー kakel-sankakel-san
提出日時 2022-09-30 22:16:37
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 1,201 bytes
コンパイル時間 728 ms
コンパイル使用メモリ 111,064 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-06-02 05:54:11
合計ジャッジ時間 2,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
26,000 KB
testcase_01 AC 28 ms
25,612 KB
testcase_02 AC 29 ms
25,964 KB
testcase_03 AC 30 ms
28,032 KB
testcase_04 AC 29 ms
26,100 KB
testcase_05 AC 30 ms
27,880 KB
testcase_06 AC 30 ms
25,972 KB
testcase_07 AC 30 ms
27,792 KB
testcase_08 AC 30 ms
25,972 KB
testcase_09 AC 29 ms
26,160 KB
testcase_10 AC 29 ms
25,856 KB
testcase_11 AC 30 ms
26,352 KB
testcase_12 AC 31 ms
27,908 KB
testcase_13 AC 29 ms
26,224 KB
testcase_14 AC 29 ms
25,964 KB
testcase_15 AC 29 ms
25,712 KB
testcase_16 AC 28 ms
25,588 KB
testcase_17 AC 29 ms
25,712 KB
testcase_18 AC 28 ms
25,900 KB
testcase_19 AC 30 ms
28,008 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = ReadLine().Split(' ');
        var set = new HashSet<string>(n);
        var list = new List<string>(set);
        var dic = new Dictionary<string, int>();
        for (var i = 0; i < list.Count; ++i) dic[list[i]] = i;
        var cmp = new int[n.Length];
        for (var i = 0; i < n.Length; ++i) cmp[i] = dic[n[i]];
        var bitmax = 1 << list.Count;
        for (var b = 0; b < bitmax; ++b)
        {
            var map = new bool[list.Count];
            var tmp = b;
            for (var i = 0; i < map.Length; ++i)
            {
                map[i] = tmp % 2 == 1;
                tmp >>= 1;
            }
            if (Nand(Nand(Nand(map[cmp[0]], map[cmp[1]]), map[cmp[2]]), Nand(Nand(map[cmp[3]], map[cmp[4]]), map[cmp[5]])))
            {
                WriteLine("YES");
                return;
            }
        }
        WriteLine("NO");
    }
    static bool Nand(bool a, bool b)
    {
        return !(a & b);
    }
}
0