結果

問題 No.355 数当てゲーム(2)
ユーザー AreTrashAreTrash
提出日時 2016-09-05 10:02:55
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 954 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 112,544 KB
実行使用メモリ 46,472 KB
平均クエリ数 27.73
最終ジャッジ日時 2024-07-16 11:01:16
合計ジャッジ時間 10,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
41,852 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 54 ms
42,100 KB
testcase_07 WA -
testcase_08 AC 53 ms
42,124 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 54 ms
42,644 KB
testcase_14 WA -
testcase_15 AC 49 ms
39,828 KB
testcase_16 WA -
testcase_17 AC 54 ms
43,920 KB
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 55 ms
41,732 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 56 ms
41,716 KB
testcase_34 AC 59 ms
42,260 KB
testcase_35 AC 59 ms
42,484 KB
testcase_36 AC 56 ms
44,072 KB
testcase_37 AC 59 ms
42,136 KB
testcase_38 AC 57 ms
42,384 KB
testcase_39 AC 55 ms
43,804 KB
testcase_40 AC 52 ms
41,720 KB
testcase_41 AC 52 ms
39,824 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 53 ms
42,056 KB
testcase_46 AC 53 ms
41,960 KB
testcase_47 RE -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 54 ms
44,040 KB
testcase_51 AC 54 ms
42,108 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 -1;
                Console.WriteLine(string.Join(" ", s.ToCharArray()));
                return int.Parse(Console.ReadLine().Split(' ')[0]);
            };

            int[] res;
            for(var i = 1234;; i++){
                var x = output(i.ToString());
                if(x == 4) return;
                if(x == 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 == i + 1) break;
                }
            }
        }
    }
}
0