結果

問題 No.355 数当てゲーム(2)
ユーザー FF256grhyFF256grhy
提出日時 2016-04-01 23:14:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 2,368 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 25,344 KB
実行使用メモリ 25,232 KB
平均クエリ数 21.48
最終ジャッジ日時 2024-07-16 23:13:14
合計ジャッジ時間 4,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,232 KB
testcase_01 AC 21 ms
25,232 KB
testcase_02 AC 20 ms
24,848 KB
testcase_03 AC 21 ms
24,848 KB
testcase_04 AC 21 ms
24,848 KB
testcase_05 AC 21 ms
24,848 KB
testcase_06 AC 25 ms
24,848 KB
testcase_07 AC 20 ms
24,848 KB
testcase_08 AC 19 ms
24,592 KB
testcase_09 AC 21 ms
24,848 KB
testcase_10 AC 21 ms
24,848 KB
testcase_11 AC 20 ms
24,964 KB
testcase_12 AC 21 ms
25,232 KB
testcase_13 AC 20 ms
24,592 KB
testcase_14 AC 19 ms
24,848 KB
testcase_15 AC 21 ms
25,232 KB
testcase_16 AC 19 ms
25,232 KB
testcase_17 AC 19 ms
24,848 KB
testcase_18 AC 20 ms
24,848 KB
testcase_19 AC 20 ms
25,232 KB
testcase_20 AC 20 ms
24,824 KB
testcase_21 AC 19 ms
25,208 KB
testcase_22 AC 20 ms
24,824 KB
testcase_23 AC 19 ms
24,824 KB
testcase_24 AC 23 ms
24,568 KB
testcase_25 AC 19 ms
25,208 KB
testcase_26 AC 19 ms
24,824 KB
testcase_27 AC 20 ms
25,208 KB
testcase_28 AC 20 ms
25,208 KB
testcase_29 AC 20 ms
24,824 KB
testcase_30 AC 20 ms
24,568 KB
testcase_31 AC 20 ms
25,208 KB
testcase_32 AC 22 ms
24,568 KB
testcase_33 AC 21 ms
25,208 KB
testcase_34 AC 21 ms
24,824 KB
testcase_35 AC 20 ms
25,196 KB
testcase_36 AC 20 ms
24,812 KB
testcase_37 AC 21 ms
24,812 KB
testcase_38 AC 21 ms
24,556 KB
testcase_39 AC 22 ms
24,812 KB
testcase_40 AC 21 ms
24,940 KB
testcase_41 AC 20 ms
25,196 KB
testcase_42 AC 21 ms
24,940 KB
testcase_43 AC 21 ms
25,180 KB
testcase_44 AC 22 ms
25,196 KB
testcase_45 AC 21 ms
25,196 KB
testcase_46 AC 20 ms
25,196 KB
testcase_47 AC 21 ms
25,196 KB
testcase_48 AC 21 ms
24,812 KB
testcase_49 AC 20 ms
24,812 KB
testcase_50 AC 20 ms
25,196 KB
testcase_51 AC 21 ms
24,556 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:3:19: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    3 | #define SCAN scanf("%d%d", &x, &y); if(x==4) { return 0; }
      |              ~~~~~^~~~~~~~~~~~~~~~
main.cpp:12:17: note: in expansion of macro ‘SCAN’
   12 |                 SCAN
      |                 ^~~~
main.cpp:3:19: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    3 | #define SCAN scanf("%d%d", &x, &y); if(x==4) { return 0; }
      |              ~~~~~^~~~~~~~~~~~~~~~
main.cpp:18:17: note: in expansion of macro ‘SCAN’
   18 |                 SCAN
      |                 ^~~~
main.cpp:3:19: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    3 | #define SCAN scanf("%d%d", &x, &y); if(x==4) { return 0; }
      |              ~~~~~^~~~~~~~~~~~~~~~
main.cpp:42:74: note: in expansion of macro ‘SCAN’
   42 |         printf("%d %d %d %d\n", n[0], n[1], n[2], n[3]); fflush(stdout); SCAN
      |                                                                          ^~~~
main.cpp:3:19: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    3 | #define SCAN scanf("%d%d", &x, &y); if(x==4) { return 0; }
      |              ~~~~~^~~~~~~~~~~~~~~~
main.cpp:43:74: note: in expansion of macro ‘SCAN’
   43 |         printf("%d %d %d %d\n", n[0], n[1], n[3], n[2]); fflush(stdout); SCAN
      |                                                                          ^~~~
main.cpp:3:19: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    3 | #define SCAN scanf("%d%d", &x, &y); if(x==4) { return 0; }
      |              ~~

ソースコード

diff #

#include <stdio.h>

#define SCAN scanf("%d%d", &x, &y); if(x==4) { return 0; }

int main() {
	int x, y;
	int i;
	int d[10];
	
	for(i = 3; i <= 9; i++) {
		printf("0 1 2 %d\n", i); fflush(stdout);
		SCAN
		d[i] = x + y;
	}
	
	for(i = 0; i < 3; i++) {
		printf("%d 7 8 9\n", i); fflush(stdout);
		SCAN
		d[i] = x + y;
	}
	
	int max = -1;
	for(i = 3; i <= 9; i++) {
		max = max < d[i] ? d[i] : max;
	}
	int c = 0;
	for(i = 3; i <= 9; i++) {
		d[i] = (d[i] == max);
		if(i >= 7 && d[i]) { c++; }
	}
	
	for(i = 0; i < 3; i++) {
		d[i] = (d[i] == c + 1);
	}
	
	int n[4], p = 0;
	for(i = 0; i < 10; i++) {
		if(d[i]) { n[p] = i; p++; }
	} 
	
	// ひどい
	printf("%d %d %d %d\n", n[0], n[1], n[2], n[3]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[0], n[1], n[3], n[2]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[0], n[2], n[1], n[3]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[0], n[2], n[3], n[1]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[0], n[3], n[1], n[2]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[0], n[3], n[2], n[1]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[1], n[0], n[2], n[3]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[1], n[0], n[3], n[2]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[1], n[2], n[0], n[3]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[1], n[2], n[3], n[0]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[1], n[3], n[0], n[2]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[1], n[3], n[2], n[0]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[2], n[0], n[1], n[3]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[2], n[0], n[3], n[1]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[2], n[1], n[0], n[3]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[2], n[1], n[3], n[0]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[2], n[3], n[0], n[1]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[2], n[3], n[1], n[0]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[3], n[0], n[1], n[2]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[3], n[0], n[2], n[1]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[3], n[1], n[0], n[2]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[3], n[1], n[2], n[0]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[3], n[2], n[0], n[1]); fflush(stdout); SCAN
	printf("%d %d %d %d\n", n[3], n[2], n[1], n[0]); fflush(stdout); SCAN
	
	return 0;
}
0