結果

問題 No.24 数当てゲーム
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-07-28 13:02:50
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,133 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 107,164 KB
実行使用メモリ 25,996 KB
最終ジャッジ日時 2024-07-05 18:22:48
合計ジャッジ時間 1,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
17,792 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 22 ms
17,920 KB
testcase_05 AC 21 ms
17,792 KB
testcase_06 AC 23 ms
17,792 KB
testcase_07 AC 22 ms
17,792 KB
testcase_08 AC 22 ms
17,792 KB
testcase_09 AC 22 ms
17,792 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.Linq;

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;
        }
        var flg=false;
        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])]++;
                flg=true;
            }
        }
        for(int i=0;i<10;++i){
            if(flg){
                if(array[i]>0){
                    Console.WriteLine(i);
                    return;
                }
            }else{
                if(array[i]==0){
                Console.WriteLine(i);
                    return;
                }
            }
        }
    }
}
0