結果

問題 No.355 数当てゲーム(2)
ユーザー kongarishisyamokongarishisyamo
提出日時 2016-06-09 10:54:47
言語 C++11
(gcc 13.3.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 960 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 56,692 KB
実行使用メモリ 25,464 KB
平均クエリ数 27.38
最終ジャッジ日時 2024-07-16 10:25:56
合計ジャッジ時間 5,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,976 KB
testcase_01 AC 36 ms
24,592 KB
testcase_02 AC 51 ms
24,976 KB
testcase_03 AC 24 ms
25,232 KB
testcase_04 AC 23 ms
25,232 KB
testcase_05 AC 23 ms
24,592 KB
testcase_06 AC 22 ms
25,232 KB
testcase_07 AC 105 ms
24,976 KB
testcase_08 AC 21 ms
24,848 KB
testcase_09 AC 23 ms
25,232 KB
testcase_10 AC 22 ms
24,848 KB
testcase_11 AC 20 ms
24,848 KB
testcase_12 AC 24 ms
25,220 KB
testcase_13 AC 20 ms
24,592 KB
testcase_14 AC 26 ms
24,848 KB
testcase_15 AC 32 ms
25,232 KB
testcase_16 AC 21 ms
24,592 KB
testcase_17 AC 25 ms
25,232 KB
testcase_18 AC 21 ms
25,232 KB
testcase_19 AC 22 ms
24,592 KB
testcase_20 AC 21 ms
24,568 KB
testcase_21 AC 29 ms
24,568 KB
testcase_22 AC 26 ms
24,824 KB
testcase_23 AC 21 ms
24,440 KB
testcase_24 AC 46 ms
25,208 KB
testcase_25 AC 24 ms
24,568 KB
testcase_26 AC 37 ms
24,952 KB
testcase_27 AC 20 ms
25,208 KB
testcase_28 AC 21 ms
24,568 KB
testcase_29 AC 27 ms
24,892 KB
testcase_30 AC 31 ms
24,952 KB
testcase_31 AC 36 ms
24,952 KB
testcase_32 AC 23 ms
24,824 KB
testcase_33 RE -
testcase_34 AC 42 ms
25,464 KB
testcase_35 AC 26 ms
25,196 KB
testcase_36 AC 24 ms
24,556 KB
testcase_37 AC 23 ms
25,196 KB
testcase_38 AC 23 ms
25,196 KB
testcase_39 AC 37 ms
24,556 KB
testcase_40 AC 25 ms
24,940 KB
testcase_41 AC 36 ms
25,324 KB
testcase_42 AC 23 ms
24,556 KB
testcase_43 AC 33 ms
24,556 KB
testcase_44 AC 22 ms
24,812 KB
testcase_45 AC 23 ms
25,196 KB
testcase_46 AC 27 ms
25,196 KB
testcase_47 AC 22 ms
24,940 KB
testcase_48 AC 21 ms
24,812 KB
testcase_49 AC 29 ms
24,940 KB
testcase_50 AC 24 ms
24,812 KB
testcase_51 AC 62 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdlib>

using namespace std;

typedef struct{
  int X,Y;
  int N[4];
} memo;

int main(){

  int N[4];
  memo Nmemo[100];
  int t=0;
  int X,Y;

  srand('S'+'H'+'I'+'S'+'Y'+'A'+'M'+'O');

  while(1){

    for(int i=0;i<4;i++) N[i]=rand()%10;

    bool f=true;

    for(int i=0;i<4;i++){
      for(int j=0;j<4;j++){
	if(i!=j&&N[i]==N[j]) f=false;
      }
    }

    for(int i=0;i<t;i++){
      int tmpX=0,tmpY=0;
      for(int j=0;j<4;j++){
	for(int k=0;k<4;k++){
	  if(j==k&&N[j]==Nmemo[i].N[k]) tmpX++;
	  else if(j!=k&&N[j]==Nmemo[i].N[k]) tmpY++;
	}
      }
      if(Nmemo[i].X>tmpX) f=false;
      else if(Nmemo[i].X==tmpX&&Nmemo[i].Y>tmpY) f=false;
    }

    if(!f) continue;

    cout<<N[0]<<" "<<N[1]<<" "<<N[2]<<" "<<N[3]<<endl<<flush;
    cin>>X>>Y;

    if(X==4) break;

    Nmemo[t].X=X;
    Nmemo[t].Y=Y;
    Nmemo[t].N[0]=N[0];
    Nmemo[t].N[1]=N[1];
    Nmemo[t].N[2]=N[2];
    Nmemo[t].N[3]=N[3];
    t++;
  }
}

0