結果
問題 | No.2191 一元二次式 mod 奇素数 |
ユーザー | MasKoaTS |
提出日時 | 2022-11-17 12:40:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,839 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 82,564 KB |
実行使用メモリ | 87,168 KB |
最終ジャッジ日時 | 2024-09-19 01:20:10 |
合計ジャッジ時間 | 4,401 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 110 ms
86,784 KB |
testcase_01 | AC | 107 ms
86,528 KB |
testcase_02 | AC | 112 ms
86,600 KB |
testcase_03 | AC | 108 ms
86,828 KB |
testcase_04 | AC | 117 ms
86,528 KB |
testcase_05 | AC | 116 ms
86,640 KB |
testcase_06 | AC | 114 ms
86,784 KB |
testcase_07 | AC | 116 ms
86,656 KB |
testcase_08 | AC | 116 ms
86,816 KB |
testcase_09 | WA | - |
testcase_10 | AC | 116 ms
86,592 KB |
testcase_11 | AC | 119 ms
86,528 KB |
testcase_12 | WA | - |
testcase_13 | AC | 125 ms
86,596 KB |
testcase_14 | AC | 116 ms
86,848 KB |
testcase_15 | AC | 111 ms
86,616 KB |
testcase_16 | WA | - |
testcase_17 | AC | 109 ms
86,656 KB |
testcase_18 | AC | 117 ms
86,528 KB |
testcase_19 | WA | - |
testcase_20 | AC | 106 ms
86,528 KB |
testcase_21 | AC | 111 ms
86,784 KB |
testcase_22 | AC | 121 ms
86,656 KB |
testcase_23 | AC | 113 ms
86,784 KB |
testcase_24 | AC | 116 ms
86,528 KB |
testcase_25 | AC | 114 ms
86,808 KB |
testcase_26 | AC | 111 ms
86,748 KB |
ソースコード
import itertools as iter import collections as coll import heapq as hq import bisect as bis from decimal import Decimal as dec from functools import cmp_to_key import math import sys #import pypyjit #pypyjit.set_param('max_unroll_recursion=-1') sys.setrecursionlimit(10 ** 6) inp = sys.stdin.readline input = lambda : inp().rstrip() getN = lambda : int(inp()) getNs = lambda : map(int, inp().split()) getList = lambda :list(map(int, inp().split())) getStrs = lambda n : [input() for _ in [0] * n] def yexit(): print("Yes"); exit(0) def nexit(): print("No"); exit(0) pi = 3.141592653589793 mod = 1000000007 MOD = 998244353 INF = 4611686018427387903 dx = [1, 0, -1, 0]; dy = [0, 1, 0, -1] #di = coll.defaultdict(int) # Tonelli-Shanks's Algorithm import random class TonelliShanks: def __init__(self, a, p): self.a = a self.p = p self.x = self.tonelli_shanks() def get_inv(self, _a, _p): return pow(_a, _p - 2, _p) def euler_criterion(self, _a, _p): return (pow(_a, (_p - 1) >> 1, _p) == 1) # x^2 \equiv a (mod p) -> x def tonelli_shanks(self) : self.a %= self.p if(self.a == 0): return 0 if(self.p == 2): return self.a if not(self.euler_criterion(self.a, self.p)): return -1 b = 1 while(self.euler_criterion(b, self.p)): b = random.randint(1, self.p - 1) q = self.p - 1 r = 0 while not(q & 1): r += 1 q >>= 1 x = pow(self.a, (q + 1) >> 1, self.p) b = pow(b, q, self.p) s = 2 while(pow(x, 2, self.p) != self.a): e = self.get_inv(self.a, self.p) * pow(x, 2, self.p) % self.p if(pow(e, 1 << (r - s), p) != 1): x *= b x %= self.p b = pow(b, 2, self.p) % self.p s += 1 return x """ Main Code """ p = getN() K = (p - 1) >> 1 a = p - abs(-4 * K * K - 16 * K + 1) % p x = TonelliShanks(a, p).x if(x == -1 or (x & 1) == 0): print("NO") else: print("YES")