結果
問題 | No.24 数当てゲーム |
ユーザー | bluemegane |
提出日時 | 2018-10-24 13:52:19 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 26 ms / 5,000 ms |
コード長 | 1,054 bytes |
コンパイル時間 | 1,001 ms |
コンパイル使用メモリ | 109,236 KB |
実行使用メモリ | 26,196 KB |
最終ジャッジ日時 | 2024-11-19 05:19:31 |
合計ジャッジ時間 | 1,833 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
23,908 KB |
testcase_01 | AC | 23 ms
23,772 KB |
testcase_02 | AC | 23 ms
23,772 KB |
testcase_03 | AC | 24 ms
24,164 KB |
testcase_04 | AC | 25 ms
23,652 KB |
testcase_05 | AC | 24 ms
26,196 KB |
testcase_06 | AC | 26 ms
23,960 KB |
testcase_07 | AC | 24 ms
23,772 KB |
testcase_08 | AC | 24 ms
24,088 KB |
testcase_09 | AC | 24 ms
26,072 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Hello { public static void Main() { var n = int.Parse(Console.ReadLine().Trim()); var a = new int[n, 5]; for (int i = 0; i < n; i++) { string[] line = Console.ReadLine().Trim().Split(' '); for (int j = 0; j < 4; j++) a[i, j] = int.Parse(line[j]); a[i, 4] = line[4] == "YES" ? 1 : 0; } for (int i = 0; i <= 9; i++) if (check(a, n, i)) { Console.WriteLine(i); break; } } public static bool check(int[,] a, int n, int b) { for (int i = 0; i < n; i++) if (a[i, 4] == 0) { for (int j = 0; j < 4; j++) if (a[i, j] == b) return false; } else { var find = false; for (int k = 0; k < 4; k++) if (a[i, k] == b) find = true; if (!find) return false; } return true; } }