結果
問題 | No.97 最大の値を求めるくえり |
ユーザー | Mao-beta |
提出日時 | 2024-03-07 15:35:06 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,556 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 82,544 KB |
実行使用メモリ | 92,928 KB |
最終ジャッジ日時 | 2024-09-29 18:39:59 |
合計ジャッジ時間 | 5,928 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
62,464 KB |
testcase_01 | AC | 69 ms
80,896 KB |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | AC | 107 ms
77,184 KB |
testcase_05 | AC | 114 ms
77,552 KB |
testcase_06 | AC | 125 ms
77,440 KB |
testcase_07 | AC | 186 ms
77,696 KB |
testcase_08 | AC | 267 ms
77,568 KB |
testcase_09 | AC | 414 ms
77,824 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
import sys import math import bisect from heapq import heapify, heappop, heappush from collections import deque, defaultdict, Counter from functools import lru_cache from itertools import accumulate, combinations, permutations, product sys.setrecursionlimit(1000000) MOD = 10 ** 9 + 7 MOD99 = 998244353 input = lambda: sys.stdin.readline().strip() NI = lambda: int(input()) NMI = lambda: map(int, input().split()) NLI = lambda: list(NMI()) SI = lambda: input() SMI = lambda: input().split() SLI = lambda: list(SMI()) EI = lambda m: [NLI() for _ in range(m)] xor128_x = 123456789 xor128_y = 362436069 xor128_z = 521288629 xor128_w = 88675123 mask = (1 << 32) - 1 def xor128(): global xor128_x, xor128_y, xor128_z, xor128_w t = xor128_x ^ (xor128_x << 11) t &= mask xor128_x, xor128_y, xor128_z = xor128_y, xor128_z, xor128_w xor128_w = xor128_w ^ (xor128_w >> 19) ^ (t ^ (t >> 8)) xor128_w &= mask return xor128_w def generateA(N): A = [] for i in range(N): A.append(xor128() % 100003) return A def main(): N, Q = NMI() M = 100003 A = generateA(N) if N <= 300: for _ in range(Q): q = NI() B = [a*q % M for a in A] print(max(B)) else: SA = set(A) for _ in range(Q): q = NI() inv = pow(q, -1, M) for x in range(M-1, M-1-300, -1): a = x * inv % M if a in SA: print(x) break if __name__ == "__main__": main()