結果
問題 | No.355 数当てゲーム(2) |
ユーザー | mban |
提出日時 | 2017-02-17 14:42:02 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,504 bytes |
コンパイル時間 | 2,096 ms |
コンパイル使用メモリ | 115,000 KB |
実行使用メモリ | 44,376 KB |
平均クエリ数 | 5.33 |
最終ジャッジ日時 | 2024-07-16 12:21:21 |
合計ジャッジ時間 | 6,500 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
41,792 KB |
testcase_01 | AC | 48 ms
41,424 KB |
testcase_02 | AC | 48 ms
41,700 KB |
testcase_03 | AC | 48 ms
42,172 KB |
testcase_04 | AC | 49 ms
42,184 KB |
testcase_05 | WA | - |
testcase_06 | AC | 52 ms
43,984 KB |
testcase_07 | AC | 49 ms
41,668 KB |
testcase_08 | AC | 47 ms
41,684 KB |
testcase_09 | AC | 46 ms
44,216 KB |
testcase_10 | AC | 45 ms
41,552 KB |
testcase_11 | AC | 47 ms
43,608 KB |
testcase_12 | AC | 47 ms
42,068 KB |
testcase_13 | AC | 48 ms
41,808 KB |
testcase_14 | WA | - |
testcase_15 | AC | 51 ms
42,448 KB |
testcase_16 | AC | 48 ms
43,724 KB |
testcase_17 | AC | 51 ms
39,820 KB |
testcase_18 | AC | 46 ms
41,668 KB |
testcase_19 | AC | 47 ms
44,232 KB |
testcase_20 | AC | 50 ms
41,792 KB |
testcase_21 | AC | 47 ms
41,608 KB |
testcase_22 | AC | 48 ms
41,408 KB |
testcase_23 | AC | 49 ms
41,604 KB |
testcase_24 | AC | 49 ms
43,732 KB |
testcase_25 | AC | 46 ms
41,864 KB |
testcase_26 | AC | 47 ms
41,740 KB |
testcase_27 | AC | 50 ms
41,896 KB |
testcase_28 | AC | 50 ms
43,472 KB |
testcase_29 | AC | 48 ms
41,540 KB |
testcase_30 | AC | 48 ms
42,052 KB |
testcase_31 | AC | 48 ms
42,196 KB |
testcase_32 | AC | 48 ms
43,448 KB |
testcase_33 | AC | 50 ms
41,664 KB |
testcase_34 | AC | 50 ms
43,836 KB |
testcase_35 | WA | - |
testcase_36 | AC | 50 ms
41,672 KB |
testcase_37 | AC | 49 ms
41,924 KB |
testcase_38 | AC | 47 ms
41,796 KB |
testcase_39 | AC | 46 ms
42,072 KB |
testcase_40 | AC | 47 ms
44,376 KB |
testcase_41 | AC | 48 ms
41,872 KB |
testcase_42 | AC | 49 ms
41,924 KB |
testcase_43 | AC | 49 ms
42,312 KB |
testcase_44 | AC | 48 ms
41,540 KB |
testcase_45 | AC | 48 ms
43,980 KB |
testcase_46 | AC | 50 ms
42,044 KB |
testcase_47 | AC | 48 ms
41,908 KB |
testcase_48 | AC | 50 ms
41,784 KB |
testcase_49 | AC | 48 ms
41,600 KB |
testcase_50 | AC | 48 ms
42,036 KB |
testcase_51 | AC | 47 ms
41,916 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.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; using System.IO; class Program { static void Main(string[] args) { new Magatro().Solve(); } } public class Scanner { private StreamReader Sr; private string[] S; private int Index; private const char Separator = ' '; public Scanner(Stream source) { Index = 0; S = new string[0]; Sr = new StreamReader(source); } private string[] Line() { return Sr.ReadLine().Split(Separator); } public string Next() { string result; if (Index >= S.Length) { S = Line(); Index = 0; } result = S[Index]; Index++; return result; } public int NextInt() { return int.Parse(Next()); } public double NextDouble() { return double.Parse(Next()); } public long NextLong() { return long.Parse(Next()); } public decimal NextDecimal() { return decimal.Parse(Next()); } public string[] StringArray(int index = 0) { Next(); Index = S.Length; return S.Skip(index).ToArray(); } public int[] IntArray(int index = 0) { return StringArray(index).Select(int.Parse).ToArray(); } public long[] LongArray(int index = 0) { return StringArray(index).Select(long.Parse).ToArray(); } public bool EndOfStream { get { return Sr.EndOfStream; } } } public class Magatro { private Scanner Cin; public void Solve() { Cin = new Scanner(Console.OpenStandardInput()); bool[] b = new bool[10000]; for (int i = 0; i < 10000; i++) { b[i] = Check(i); } for (int i = 1000; i < 10000; i++) { if (!b[i]) continue; var t = Write(i); if (t.Item1 == 4 && t.Item2 == 0) { return; } for (int j =i+1; j < 10000; j++) { if (!b[j]) continue; var p = Count(i, j); if ((t.Item1 != p.Item1) || t.Item2 != p.Item2) { b[j] = false; } } b[i] = false; } //throw new Exception(); } private bool Check(int i) { if (i < 1000) { return false; } string s = i.ToString(); for (int j = 0; j < 3; j++) { for (int k = j+1; k < 4; k++) { if (s[j] == s[k]) { return false; } } } return true; } private Tuple<int, int> Count(int i, int j) { int h = 0; int b = 0; string si = i.ToString(); string sj = j.ToString(); for (int k = 0; k < 4; k++) { if (sj.Contains(si[k])) b++; if (si[k] == sj[k]) h++; } return Tuple.Create(h, b - h); } private Tuple<int, int> Write(int i) { Console.WriteLine(string.Join(" ", i.ToString().ToArray())); string[] s = Console.ReadLine().Split(' '); int h = int.Parse(s[0]); int b = int.Parse(s[1]); return Tuple.Create(h, b); } }