結果
問題 | No.305 鍵(2) |
ユーザー | uma-pinehill |
提出日時 | 2018-05-22 16:08:12 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,250 bytes |
コンパイル時間 | 958 ms |
コンパイル使用メモリ | 115,384 KB |
実行使用メモリ | 42,684 KB |
平均クエリ数 | 87.08 |
最終ジャッジ日時 | 2024-07-16 15:49:33 |
合計ジャッジ時間 | 4,546 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 41 ms
34,648 KB |
testcase_06 | AC | 41 ms
34,264 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Text; public class Program { static void Main() { long Key = 0; int[] NumPat = new int[10]; int[] Kotae = new int[10]; int Count =0; int ZeroNum = -1; // 未使用数字を取得 for(long i = 0; i<=9; i++){ int Hit = GetHit(i * 1111111111); if(Hit == 10){ return; }else if(Hit == 0){ ZeroNum = (int)i; } } int HitCount = 0; for(int j =0; j<=9;j++){ if(j==ZeroNum){ continue; } if(ZeroNum == -1){ ResetArray(NumPat,9-j); }else{ ResetArray(NumPat,ZeroNum); } NumPat[0]=j; for(int k =0;k<=9;k++){ HitCount = GetHit(JointArray(NumPat)); if(HitCount == 10){ return; }else if((HitCount == 1 && ZeroNum != -1) || (HitCount == 2 && ZeroNum == -1)){ Kotae[k] = j; } ShiftArray(NumPat); } } if(GetHit(JointArray(Kotae))!=10){ Exception hand = new Exception("お手上げ"); throw hand; } } static int GetHit(long Input){ Console.WriteLine("{0:D10}",Input); return int.Parse(Console.ReadLine().Split(' ')[0]); } static long JointArray(int[] Arr){ long Len = Arr.Length; long Poww = (long)Math.Pow(10, Len-1); long Result = 0; for(var i = 0;i < Len;i++){ Result = Result + Arr[i]*Poww; Poww = Poww / 10; } return Result; } static int[] ResetArray(int[] Arr, int ResetValue){ var tmp = Arr.Length; for(var i = 0;i<tmp;i++){ Arr[i]=ResetValue; } return Arr; } static int[] ShiftArray(int[] Arr){ int Len = Arr.Length; int Tmp = Arr[Len-1]; for(var i = 1;i < Len;i++){ Arr[i] = Arr[i-1]; } Arr[0] = Tmp; return Arr; } }