結果

問題 No.97 最大の値を求めるくえり
ユーザー bal4ubal4u
提出日時 2019-08-17 21:15:42
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 1,553 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 31,900 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-25 10:31:46
合計ジャッジ時間 2,682 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 96 ms
4,348 KB
testcase_03 AC 93 ms
4,348 KB
testcase_04 AC 7 ms
4,348 KB
testcase_05 AC 7 ms
4,348 KB
testcase_06 AC 9 ms
4,348 KB
testcase_07 AC 15 ms
4,348 KB
testcase_08 AC 26 ms
4,348 KB
testcase_09 AC 41 ms
4,348 KB
testcase_10 AC 75 ms
4,348 KB
testcase_11 AC 109 ms
4,348 KB
testcase_12 AC 139 ms
4,348 KB
testcase_13 AC 171 ms
4,348 KB
testcase_14 AC 17 ms
4,348 KB
testcase_15 AC 13 ms
4,348 KB
testcase_16 AC 11 ms
4,348 KB
testcase_17 AC 10 ms
4,348 KB
testcase_18 AC 10 ms
4,348 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'in':
main.c:10:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
   10 | #define gc() getchar_unlocked()
      |              ^~~~~~~~~~~~~~~~
main.c:18:24: note: in expansion of macro 'gc'
   18 |         int n = 0, c = gc();
      |                        ^~
main.c: In function 'out':
main.c:11:15: warning: implicit declaration of function 'putchar_unlocked' [-Wimplicit-function-declaration]
   11 | #define pc(c) putchar_unlocked(c)
      |               ^~~~~~~~~~~~~~~~
main.c:27:21: note: in expansion of macro 'pc'
   27 |         while (i--) pc(b[i]);
      |                     ^~

ソースコード

diff #

// yukicoder: 97 最大の値を求めるくえり
// 2019.8.17 bal4u

#include <stdio.h>
#include <stdlib.h>

typedef long long ll;

#if 1
#define gc() getchar_unlocked()
#define pc(c) putchar_unlocked(c)
#else
#define gc() getchar()
#define pc(c) putchar(c)
#endif

int in() { // 整数の入力
	int n = 0, c = gc();
	do n = 10*n + (c & 0xf), c = gc(); while (c >= '0');
	return n;
}

void out(int n) { // 正整数の表示(出力)
	int i; char b[20];

	i = 0; while (n) b[i++] = n % 10 + '0', n /= 10;
	while (i--) pc(b[i]);
	pc('\n');
}

unsigned x = 123456789, y = 362436069, z = 521288629, w = 88675123;
unsigned xor128() {
	unsigned t = x ^ (x << 11);
	x = y, y = z, z = w;
	return w = w ^ (w >> 19) ^ (t ^ (t >> 8));
}

#define M 100003
#define MAX M
int inv[MAX+10] = {1,1};
int a[MAX+10]; int N;
char f[MAX+10];

void generateA() {
	int i = N; while (i--) a[i] = (int)(xor128() % M);
}

int main()
{
	int i, Q, q, t, ans;
	
	for (i = 2; i <= MAX; i++) inv[i] = -(M/i)*(ll)inv[M % i] % M;

	N = in(), Q = in();
	generateA();
	
	if (N < 2000) {
		while (Q--) {
			q = in();
			if (q == 0) { pc('0'), pc('\n'); continue; }
            ans = 0, i = N; while (i--) {
            	t = (ll)q*a[i] % M;
            	if (t > ans) ans = t;
            }
            out(ans);
        }
        return 0;
	}
	
	for (i = 0; i < N; i++) f[a[i]] = 1;
	while (Q--) {
		q = in();
		if (q == 0) { pc('0'), pc('\n'); continue; }
		for (i = M-1; ; i--) {
			t = i * (ll)inv[q] % M;
			if (t < 0) t += M;
			if (f[t]) { out(i); break; }
		}
	}
	return 0;
}
0