結果

問題 No.221 犯罪都市
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 23:39:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 1,454 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 114,608 KB
実行使用メモリ 26,000 KB
最終ジャッジ日時 2024-10-10 23:39:06
合計ジャッジ時間 2,013 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,036 KB
testcase_01 AC 25 ms
24,108 KB
testcase_02 AC 24 ms
23,916 KB
testcase_03 AC 24 ms
24,032 KB
testcase_04 AC 24 ms
23,952 KB
testcase_05 AC 24 ms
23,980 KB
testcase_06 AC 25 ms
23,828 KB
testcase_07 AC 25 ms
24,088 KB
testcase_08 AC 24 ms
24,040 KB
testcase_09 AC 26 ms
24,172 KB
testcase_10 AC 26 ms
26,000 KB
testcase_11 AC 24 ms
24,168 KB
testcase_12 AC 24 ms
24,220 KB
testcase_13 AC 26 ms
25,956 KB
testcase_14 AC 25 ms
23,788 KB
testcase_15 AC 26 ms
23,980 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;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("100");
            //50
            //構成員が10000人につき100人いる場合、50%で誤認逮捕が想定されるようです
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("2500");
            //2.94117647058824
            //構成員が10000人のうち2500人だと2.940%で誤認逮捕が想定されるようです
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("1");
            //99.0196078431373
            //構成員が10000人に1人だと、99%以上で誤認逮捕が想定されるようです
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        decimal N = decimal.Parse(InputList[0]);

        //PA=マフィアで、判定器がマフィアと判定
        //PB=マフィアでなくて、判定器がマフィアと判定
        decimal PA = N / 10000M * 0.99M;
        decimal PB = (10000M - N) / 10000M * 0.01M;

        Console.WriteLine(100M * PB / (PA + PB));
    }
}

0