結果

問題 No.355 数当てゲーム(2)
ユーザー AreTrashAreTrash
提出日時 2016-09-05 10:15:10
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,095 bytes
コンパイル時間 1,310 ms
コンパイル使用メモリ 111,084 KB
実行使用メモリ 45,248 KB
平均クエリ数 27.38
最終ジャッジ日時 2024-07-16 11:03:10
合計ジャッジ時間 8,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
42,536 KB
testcase_01 AC 54 ms
42,528 KB
testcase_02 AC 57 ms
43,180 KB
testcase_03 AC 57 ms
44,824 KB
testcase_04 AC 69 ms
41,104 KB
testcase_05 AC 54 ms
43,196 KB
testcase_06 AC 52 ms
44,736 KB
testcase_07 AC 53 ms
45,080 KB
testcase_08 AC 53 ms
42,812 KB
testcase_09 AC 53 ms
43,068 KB
testcase_10 AC 52 ms
44,620 KB
testcase_11 RE -
testcase_12 AC 66 ms
44,952 KB
testcase_13 AC 54 ms
43,340 KB
testcase_14 AC 55 ms
42,788 KB
testcase_15 RE -
testcase_16 AC 57 ms
43,232 KB
testcase_17 AC 56 ms
44,352 KB
testcase_18 AC 55 ms
45,120 KB
testcase_19 AC 53 ms
44,480 KB
testcase_20 RE -
testcase_21 AC 56 ms
45,116 KB
testcase_22 AC 55 ms
44,476 KB
testcase_23 AC 57 ms
43,176 KB
testcase_24 RE -
testcase_25 AC 55 ms
42,532 KB
testcase_26 AC 55 ms
42,628 KB
testcase_27 AC 54 ms
43,204 KB
testcase_28 RE -
testcase_29 AC 54 ms
42,536 KB
testcase_30 AC 54 ms
45,248 KB
testcase_31 AC 50 ms
42,376 KB
testcase_32 AC 55 ms
44,956 KB
testcase_33 AC 53 ms
42,788 KB
testcase_34 AC 71 ms
44,816 KB
testcase_35 AC 55 ms
42,516 KB
testcase_36 AC 56 ms
45,216 KB
testcase_37 AC 56 ms
43,336 KB
testcase_38 AC 57 ms
44,620 KB
testcase_39 AC 56 ms
41,236 KB
testcase_40 AC 51 ms
44,456 KB
testcase_41 RE -
testcase_42 AC 52 ms
42,416 KB
testcase_43 AC 53 ms
42,644 KB
testcase_44 RE -
testcase_45 AC 57 ms
43,320 KB
testcase_46 AC 54 ms
43,064 KB
testcase_47 AC 53 ms
43,064 KB
testcase_48 AC 54 ms
42,524 KB
testcase_49 AC 53 ms
42,804 KB
testcase_50 RE -
testcase_51 AC 52 ms
42,788 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;

namespace No355{
    public class Program{
        public static void Main(string[] args){
            Func<string, int[]> output = s =>{
                if(s.Distinct().Count() != s.Length) return new [] {-1, -1};
                Console.WriteLine(string.Join(" ", s.ToCharArray()));
                return Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);
            };

            int[] res;
            var random = new Random();
            while(true){
                var i = random.Next(10000);
                var x = output(i.ToString("0000"));
                if(x[0] == 4) return;
                if(x[0] == 0 && x[1] == 0){
                    res = i.ToString().Select(c => c - '0').ToArray();
                    break;
                }
            }
            
            for(var i = 0; i < 4; i++){
                for(var j = 0; j < 10; j++){
                    res[i] = j;
                    var x = output(string.Join("", res));
                    if(x[0] == i + 1) break;
                }
            }
        }
    }
}
0