結果

問題 No.305 鍵(2)
ユーザー くれちーくれちー
提出日時 2017-01-18 00:55:56
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 457 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 22,272 KB
実行使用メモリ 25,604 KB
平均クエリ数 46.15
最終ジャッジ日時 2024-07-16 12:16:35
合計ジャッジ時間 2,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,836 KB
testcase_01 WA -
testcase_02 AC 21 ms
24,964 KB
testcase_03 WA -
testcase_04 AC 23 ms
24,836 KB
testcase_05 WA -
testcase_06 AC 22 ms
24,964 KB
testcase_07 AC 23 ms
24,580 KB
testcase_08 WA -
testcase_09 AC 22 ms
25,476 KB
testcase_10 WA -
testcase_11 AC 20 ms
25,220 KB
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘try’:
main.c:10:20: warning: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘int *’ [-Wformat=]
   10 |         scanf("%d %s", &x, s);
      |                   ~^       ~
      |                    |       |
      |                    char *  int *
      |                   %ls
main.c:10:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d %s", &x, s);
      |         ^~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#define rep(i, n) for (i = 0; i < n; i++)

int try(int *t) {
	int i, x, s[9];
	rep(i, 10) printf("%d", t[i] % 10);
	printf("\n");
	fflush(stdout);
	scanf("%d %s", &x, s);
	if (x == 10) exit(0);
	return x;
}

int main() {
	int i, j, r[10];
	rep(i, 10) r[i] = rand() % 10;
	int x = try(r);
	rep(i, 10) {
		int t = x;
		rep(j, 10) {
			r[i]++;
			x = try(r);
			if (x > t) break;
			if (x < t) { r[i]--; break; }
		}
	}
}
0