結果

問題 No.97 最大の値を求めるくえり
ユーザー ytftytft
提出日時 2022-11-12 07:32:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,092 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 87,952 KB
最終ジャッジ日時 2024-09-14 00:09:48
合計ジャッジ時間 13,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
70,548 KB
testcase_01 AC 80 ms
81,900 KB
testcase_02 AC 674 ms
79,264 KB
testcase_03 AC 4,092 ms
79,084 KB
testcase_04 AC 120 ms
78,364 KB
testcase_05 AC 133 ms
78,776 KB
testcase_06 AC 138 ms
78,856 KB
testcase_07 AC 151 ms
79,124 KB
testcase_08 AC 2,138 ms
78,884 KB
testcase_09 AC 848 ms
79,196 KB
testcase_10 AC 687 ms
79,040 KB
testcase_11 AC 632 ms
78,932 KB
testcase_12 AC 341 ms
79,420 KB
testcase_13 AC 317 ms
79,184 KB
testcase_14 AC 286 ms
79,292 KB
testcase_15 AC 197 ms
78,932 KB
testcase_16 AC 190 ms
79,232 KB
testcase_17 AC 182 ms
82,988 KB
testcase_18 AC 181 ms
87,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,threading
input=lambda:sys.stdin.readline().rstrip()
x,y,z,w=123456789,362436069,521288629,88675123
mod=100003
def inv(A):
	rem=mod-2
	temp=A
	ret=1
	while rem:
		if rem%2:
			ret=(ret*temp)%mod
		temp=(temp**2)%mod
		rem>>=1
	return ret
def calc1(A,Q):
	ret=0
	for i in A:
		ret=max(ret,(Q*i)%mod)
	return ret
def calc2(B,Q):
	invQ=inv(Q)
	for i in range(mod-1,-1,-1):
		if (i*invQ)%mod in B:
			return i
N,M=map(int,input().split())
A=[0]*N
for i in range(N):
	t=x^((x<<11)%(1<<32))
	x,y,z=y,z,w
	w=w^(w>>19)^(t^(t>>8))
	A[i]=w%mod
B=set(A)
for i in range(M):
	Q=int(input())
	if Q==0:
		print(0)
		continue
	print(calc1(A,Q) if N<100 else calc2(B,Q))
0