結果

問題 No.97 最大の値を求めるくえり
ユーザー mkawa2mkawa2
提出日時 2023-03-16 22:25:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,529 ms / 5,000 ms
コード長 1,654 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 84,828 KB
最終ジャッジ日時 2024-09-18 09:33:45
合計ジャッジ時間 8,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,752 KB
testcase_01 AC 52 ms
71,424 KB
testcase_02 AC 495 ms
76,288 KB
testcase_03 AC 477 ms
75,648 KB
testcase_04 AC 88 ms
75,828 KB
testcase_05 AC 102 ms
76,160 KB
testcase_06 AC 105 ms
76,016 KB
testcase_07 AC 123 ms
75,520 KB
testcase_08 AC 171 ms
76,032 KB
testcase_09 AC 360 ms
76,288 KB
testcase_10 AC 382 ms
76,032 KB
testcase_11 AC 521 ms
75,992 KB
testcase_12 AC 668 ms
75,928 KB
testcase_13 AC 818 ms
76,160 KB
testcase_14 AC 1,529 ms
76,928 KB
testcase_15 AC 158 ms
76,544 KB
testcase_16 AC 155 ms
76,544 KB
testcase_17 AC 168 ms
81,280 KB
testcase_18 AC 162 ms
84,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
# md = 998244353

md = 100003
xor128_x = 123456789
xor128_y = 362436069
xor128_z = 521288629
xor128_w = 88675123
mask = (1 << 32)-1

def xor128():
    global xor128_w, xor128_y, xor128_x, xor128_z
    t = xor128_x ^ (xor128_x << 11) & mask
    xor128_x = xor128_y
    xor128_y = xor128_z
    xor128_z = xor128_w
    xor128_w = xor128_w ^ (xor128_w >> 19) ^ (t ^ (t >> 8))
    return xor128_w

n, q = LI()
aa = set(xor128()%md for _ in range(n))
n = len(aa)

if n**3 < md*q:
    for _ in range(q):
        b = II()
        ans = 0
        if b%md:
            for a in aa:
                v = a*b%md
                if v > ans: ans = v
        print(ans)

else:
    for _ in range(q):
        b = II()
        if b%md == 0:
            print(0)
        else:
            b = pow(b, md-2, md)
            for ans in range(md)[::-1]:
                a = ans*b%md
                if a in aa:
                    print(ans)
                    break
0