結果

問題 No.355 数当てゲーム(2)
ユーザー tkmst201tkmst201
提出日時 2017-04-20 22:31:02
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,356 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 162,560 KB
実行使用メモリ 25,580 KB
平均クエリ数 27.52
最終ジャッジ日時 2024-07-17 00:54:36
合計ジャッジ時間 6,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
24,592 KB
testcase_01 AC 25 ms
24,848 KB
testcase_02 AC 27 ms
24,848 KB
testcase_03 AC 26 ms
25,232 KB
testcase_04 AC 26 ms
25,232 KB
testcase_05 AC 27 ms
25,136 KB
testcase_06 AC 26 ms
24,848 KB
testcase_07 AC 27 ms
25,488 KB
testcase_08 AC 25 ms
24,976 KB
testcase_09 AC 28 ms
24,580 KB
testcase_10 AC 26 ms
24,976 KB
testcase_11 AC 25 ms
24,592 KB
testcase_12 AC 26 ms
24,976 KB
testcase_13 AC 27 ms
24,592 KB
testcase_14 AC 26 ms
25,232 KB
testcase_15 AC 25 ms
24,848 KB
testcase_16 AC 26 ms
24,976 KB
testcase_17 AC 25 ms
25,232 KB
testcase_18 AC 25 ms
25,232 KB
testcase_19 AC 26 ms
25,232 KB
testcase_20 AC 26 ms
25,208 KB
testcase_21 AC 26 ms
25,208 KB
testcase_22 AC 25 ms
24,568 KB
testcase_23 AC 26 ms
25,464 KB
testcase_24 WA -
testcase_25 AC 25 ms
24,824 KB
testcase_26 AC 26 ms
24,824 KB
testcase_27 AC 27 ms
24,824 KB
testcase_28 AC 25 ms
25,208 KB
testcase_29 AC 25 ms
24,824 KB
testcase_30 AC 27 ms
25,208 KB
testcase_31 AC 26 ms
24,568 KB
testcase_32 AC 26 ms
25,228 KB
testcase_33 AC 25 ms
24,824 KB
testcase_34 AC 25 ms
24,796 KB
testcase_35 AC 27 ms
25,196 KB
testcase_36 AC 25 ms
24,812 KB
testcase_37 AC 27 ms
25,196 KB
testcase_38 AC 26 ms
24,812 KB
testcase_39 AC 26 ms
25,196 KB
testcase_40 AC 25 ms
24,812 KB
testcase_41 AC 26 ms
24,556 KB
testcase_42 AC 25 ms
25,580 KB
testcase_43 AC 26 ms
25,196 KB
testcase_44 AC 26 ms
25,184 KB
testcase_45 AC 27 ms
24,940 KB
testcase_46 AC 26 ms
25,196 KB
testcase_47 AC 26 ms
24,812 KB
testcase_48 AC 25 ms
24,812 KB
testcase_49 AC 25 ms
25,196 KB
testcase_50 AC 27 ms
25,196 KB
testcase_51 AC 26 ms
25,436 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘pii get()’:
main.cpp:29:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   29 |         scanf("%d %d", &res.first, &res.second);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()

template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; }
template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; }

typedef unsigned long long ull;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<int, pii> P;

const ll INF = 1ll<<29;
const ll MOD = 1000000007;
const double EPS  = 1e-10;

void print(int pr[4]) {
	REP(i, 4) printf("%d%c", pr[i], i == 3 ? '\n' : ' ');
	fflush(stdout);
}

pii get() {
	pii res;
	scanf("%d %d", &res.first, &res.second);
	return res;
}

int main() {
	srand((unsigned int)time(NULL));
	
	int ans[4], ng[4];
	
	vector<int> ord;
	REP(i, 10) ord.push_back(i);
	
	while (true) {
		REP(i, 100) swap(ord[rand() % 10], ord[rand() % 10]);
		
		REP(i, 4) ng[i] = ord[i];
		print(ng);
		
		pii now = get();
		if (now.first == 0 && now.second == 0) break;
	}
	
	REP(i, 4) ord.erase( find(ALL(ord), ng[i]) );
	
	REP(i, 4) {
		int tmp = ng[i];
		REP(j, ord.size()) {
			ng[i] = ord[j];
			
			print(ng);
			pii now = get();
			
			if (now.first == 1 && now.second == 0) break;
		}
		ans[i] = ng[i];
		ng[i] = tmp;
	}
	
	print(ans);
	
	return 0;
}
0