結果
問題 | No.355 数当てゲーム(2) |
ユーザー | AreTrash |
提出日時 | 2016-09-05 10:11:13 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,077 bytes |
コンパイル時間 | 1,882 ms |
コンパイル使用メモリ | 114,784 KB |
実行使用メモリ | 47,372 KB |
平均クエリ数 | 11.94 |
最終ジャッジ日時 | 2024-07-16 11:03:01 |
合計ジャッジ時間 | 14,236 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 62 ms
42,508 KB |
testcase_04 | RE | - |
testcase_05 | AC | 61 ms
43,144 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 64 ms
42,632 KB |
testcase_10 | AC | 65 ms
44,852 KB |
testcase_11 | RE | - |
testcase_12 | AC | 61 ms
42,644 KB |
testcase_13 | RE | - |
testcase_14 | AC | 62 ms
45,440 KB |
testcase_15 | RE | - |
testcase_16 | AC | 63 ms
44,712 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 65 ms
42,892 KB |
testcase_22 | RE | - |
testcase_23 | AC | 69 ms
42,888 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 61 ms
43,280 KB |
testcase_27 | RE | - |
testcase_28 | AC | 61 ms
44,680 KB |
testcase_29 | RE | - |
testcase_30 | AC | 60 ms
46,752 KB |
testcase_31 | RE | - |
testcase_32 | AC | 62 ms
45,488 KB |
testcase_33 | AC | 64 ms
47,372 KB |
testcase_34 | RE | - |
testcase_35 | AC | 62 ms
43,160 KB |
testcase_36 | AC | 65 ms
44,844 KB |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | AC | 64 ms
43,028 KB |
testcase_43 | AC | 64 ms
42,396 KB |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | AC | 65 ms
45,312 KB |
testcase_49 | RE | - |
testcase_50 | AC | 63 ms
45,440 KB |
testcase_51 | AC | 64 ms
45,632 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.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()); 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; } } } } }