結果

問題 No.24 数当てゲーム
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-07-28 13:14:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 942 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 102,464 KB
実行使用メモリ 22,876 KB
最終ジャッジ日時 2023-09-19 06:08:37
合計ジャッジ時間 3,365 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
20,644 KB
testcase_01 AC 58 ms
20,568 KB
testcase_02 AC 58 ms
18,812 KB
testcase_03 AC 58 ms
20,644 KB
testcase_04 AC 58 ms
20,792 KB
testcase_05 AC 58 ms
20,696 KB
testcase_06 AC 59 ms
20,692 KB
testcase_07 AC 58 ms
20,732 KB
testcase_08 AC 61 ms
22,876 KB
testcase_09 AC 59 ms
22,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class No24{
    static void Main(){
        var a=Int32.Parse(Console.ReadLine());
        int[] array=new int[10];
        for(int j=0;j<10;++j){
            array[j]=0;
        }
        for(int i=0;i<a;++i){
            var b=Console.ReadLine().Split(' ');
            if(b[4]=="NO"){
                array[Int32.Parse(b[0])]=-100;
                array[Int32.Parse(b[1])]=-100;
                array[Int32.Parse(b[2])]=-100;
                array[Int32.Parse(b[3])]=-100;
            }else if(b[4]=="YES"){
                array[Int32.Parse(b[0])]++;
                array[Int32.Parse(b[1])]++;
                array[Int32.Parse(b[2])]++;
                array[Int32.Parse(b[3])]++;
            }
        }
        var max=-1;
        var num=0;
        for(int i=0;i<10;++i){
            if(max<array[i]){
                max=array[i];
                num=i;
            }
        }
        Console.WriteLine(num);
    }
}
0