結果
問題 | No.24 数当てゲーム |
ユーザー | n.y |
提出日時 | 2022-06-07 09:53:02 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 25 ms / 5,000 ms |
コード長 | 2,250 bytes |
コンパイル時間 | 1,566 ms |
コンパイル使用メモリ | 112,792 KB |
実行使用メモリ | 26,000 KB |
最終ジャッジ日時 | 2024-09-21 04:51:28 |
合計ジャッジ時間 | 1,799 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
23,980 KB |
testcase_01 | AC | 24 ms
23,968 KB |
testcase_02 | AC | 23 ms
23,964 KB |
testcase_03 | AC | 24 ms
23,960 KB |
testcase_04 | AC | 24 ms
22,192 KB |
testcase_05 | AC | 24 ms
21,936 KB |
testcase_06 | AC | 24 ms
23,964 KB |
testcase_07 | AC | 24 ms
25,880 KB |
testcase_08 | AC | 25 ms
26,000 KB |
testcase_09 | AC | 25 ms
25,876 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.Diagnostics; namespace yukicoder { class Program { static void Main(string[] args) { //ターン数 N個配列ある int N = int.Parse(Console.ReadLine()); //入力した配列 string[] a = new string[5]; //比較用数字 string[] z = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" }; //プラスマイナスを入れる配列 int[] u = { 0,0, 0, 0, 0, 0, 0, 0, 0, 0 }; //N 配列にYESがいくつあるか int yes = 0; //N回ループ for (int k = 0; k < N; k++) { //文字の分割 string[] strA = Console.ReadLine().Split(' '); //入力したものを配列に入れる for (int i=0;i<5;i++) { string str = strA[i]; a[i] = str; //YESがあれば+1する if(i==4&&a[4]=="YES") { yes += 1; } } //0から9まで for (int i = 0; i < 10; i++) { //入力した配列 for (int j = 0; j < 5; j++) { //NOなら-1 if (a[4] == "NO" && a[j] == z[i]) { u[i] -= 1; break; } //YESなら+1 else if(a[4]=="YES"&&a[j]==z[i]) { u[i] += 1; break; } } } } //一番大きな数字の判定 for (int i = 0; i < 10; i++) { //yesと同じ配列があれば、表示する if (u[i] == yes) { Console.WriteLine(z[i]); //Debug.WriteLine(z[i]); } } } } }