結果

問題 No.355 数当てゲーム(2)
ユーザー めうめう🎒めうめう🎒
提出日時 2016-04-01 22:46:00
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,582 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 25,616 KB
平均クエリ数 41.63
最終ジャッジ日時 2024-07-16 08:55:46
合計ジャッジ時間 4,741 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
using namespace std;

#define ll long long
#define INF (1 << 30)
#define INFLL (1LL << 60)

int main() {
	bool not_num[10] = {};
	int use_num[4] = {};
	int X,Y;
	while(true){
		for(int i = 0;i < 10;i++){
			if(not_num[i]) continue;
			for(int j = i + 1;j < 10;j++){
				if(not_num[j]) continue;
				for(int k = j + 1;k < 10;k++){
					if(not_num[k]) continue;
					for(int l = k + 1;l < 10;l++){
						cout << i << " " << j << " " << k << " " << l << endl;
						cin >> X >> Y;
						if(X == 0 && Y == 0){
							not_num[i] = true;
							not_num[j] = true;
							not_num[k] = true;
							not_num[l] = true;
						}else if(X + Y >= 2){
							break;
						}
						if(X == 4) break;
					}
					if(X == 4) break;
				}
				if(X == 4) break;
			}
			if(X == 4) break;
		}
		if(X == 4) break;
		int how = 0;
		for(int i = 0;i < 10;i++){
			if(not_num[i] == false){
				use_num[how] = i;
				how++;
			}
		}
		for(int i = 0;i < 4;i++){
			for(int j = 0;j < 4;j++){
				if(i == j) continue;
				for(int k = 0;k < 4;k++){
					if(k == i || k == j) continue;
					for(int l = 0;l < 4;l++){
						if(l == i || l == j || l == k) continue;
						cout << use_num[i] << " " << use_num[j] << " " << use_num[k] << " " << use_num[l] << endl;
						cin >> X >> Y;
						if(X == 4) break;
					}
					if(X == 4) break;
				}
				if(X == 4) break;
			}
			if(X == 4) break;
		}
		break;
	}
	return 0;
}
0