結果
問題 | No.97 最大の値を求めるくえり |
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
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))