結果
問題 | No.24 数当てゲーム |
ユーザー | k-a-rgb |
提出日時 | 2023-10-06 14:29:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 5,000 ms |
コード長 | 1,307 bytes |
コンパイル時間 | 4,724 ms |
コンパイル使用メモリ | 113,560 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-07-26 15:27:04 |
合計ジャッジ時間 | 4,201 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
18,816 KB |
testcase_01 | AC | 27 ms
18,816 KB |
testcase_02 | AC | 26 ms
18,688 KB |
testcase_03 | AC | 26 ms
18,688 KB |
testcase_04 | AC | 26 ms
18,944 KB |
testcase_05 | AC | 28 ms
18,688 KB |
testcase_06 | AC | 26 ms
18,944 KB |
testcase_07 | AC | 27 ms
18,816 KB |
testcase_08 | AC | 26 ms
18,816 KB |
testcase_09 | AC | 27 ms
18,944 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace PracticeAtCoder { class Program { static void Main(string[] args) { //024的宛ゲーム //0~9のbool配列 質問毎にtlueの掛け算 最後に残ったTlueが答え bool[] boA = new bool[]{true,true,true,true,true,true,true,true,true,true}; ///Console.WriteLine(boA[0]); string sA = Console.ReadLine(); int x = int.Parse(sA); String sB; string[] t; var result = false; for(int i = 0; i<x;i++){ sB = Console.ReadLine(); t = sB.Split(' '); //Console.WriteLine(t[4]); if(t[4]=="YES"){ // Console.WriteLine("YES"); for(int j= 0; j<10;j++){ //4つの数字をおなじ配列をfalse化 result = t.Contains(j.ToString()); if(result){ }else{ boA[j] = false; } } }else if(t[4]=="NO"){ //Console.WriteLine("NO"); for(int j= 0; j<10;j++){ //4つの数字をおなじ配列をfalse化 result = t.Contains(j.ToString()); if(result){ boA[j] = false; } } }else{ // Console.WriteLine("??"); } } int z = Array.IndexOf(boA,true); Console.WriteLine(z); } } }