結果
問題 | No.355 数当てゲーム(2) |
ユーザー | AreTrash |
提出日時 | 2016-09-05 10:09:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,064 bytes |
コンパイル時間 | 1,145 ms |
コンパイル使用メモリ | 112,412 KB |
実行使用メモリ | 47,400 KB |
平均クエリ数 | 11.96 |
最終ジャッジ日時 | 2024-07-16 11:02:16 |
合計ジャッジ時間 | 13,106 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | AC | 59 ms
36,696 KB |
testcase_10 | AC | 62 ms
43,280 KB |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 62 ms
42,672 KB |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 62 ms
45,444 KB |
testcase_22 | RE | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 63 ms
36,696 KB |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 62 ms
45,500 KB |
testcase_37 | RE | - |
testcase_38 | AC | 60 ms
42,428 KB |
testcase_39 | WA | - |
testcase_40 | AC | 61 ms
43,064 KB |
testcase_41 | AC | 63 ms
47,240 KB |
testcase_42 | AC | 62 ms
44,972 KB |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | WA | - |
testcase_46 | AC | 61 ms
44,964 KB |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | WA | - |
コンパイルメッセージ
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[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; } } } } }