結果
問題 | No.355 数当てゲーム(2) |
ユーザー | AreTrash |
提出日時 | 2016-09-05 09:55:48 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,154 bytes |
コンパイル時間 | 1,012 ms |
コンパイル使用メモリ | 106,880 KB |
実行使用メモリ | 46,224 KB |
平均クエリ数 | 34.54 |
最終ジャッジ日時 | 2024-07-16 11:01:03 |
合計ジャッジ時間 | 10,987 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
35,800 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 51 ms
41,496 KB |
testcase_07 | WA | - |
testcase_08 | AC | 51 ms
44,308 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 52 ms
43,752 KB |
testcase_14 | WA | - |
testcase_15 | AC | 53 ms
41,608 KB |
testcase_16 | WA | - |
testcase_17 | AC | 53 ms
41,988 KB |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 53 ms
42,100 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 | 53 ms
41,992 KB |
testcase_34 | AC | 52 ms
35,928 KB |
testcase_35 | AC | 53 ms
35,928 KB |
testcase_36 | AC | 48 ms
35,936 KB |
testcase_37 | AC | 52 ms
35,808 KB |
testcase_38 | AC | 53 ms
35,808 KB |
testcase_39 | AC | 51 ms
35,424 KB |
testcase_40 | AC | 53 ms
35,960 KB |
testcase_41 | AC | 52 ms
35,808 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 52 ms
42,240 KB |
testcase_46 | AC | 50 ms
35,792 KB |
testcase_47 | RE | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | AC | 54 ms
41,984 KB |
testcase_51 | AC | 52 ms
35,536 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 -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++){ var max = 0; var t = 0; for(var j = 0; j < 10; j++){ res[i] = j; var x = output(string.Join("", res)); if(x == 4) return; if(x > max){ t = j; max = x; } } res[i] = t; } } } }