a01sa01to's competitive programming library.
# verification-helper: PROBLEM https://judge.yosupo.jp/problem/primality_test
from sys import stdin
from library.math.miller_rabin import millar_rabin_test
q = int(stdin.readline())
for _ in range(q):
n = int(stdin.readline())
print("Yes" if millar_rabin_test(n) else "No")
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.13.2/x64/lib/python3.13/site-packages/onlinejudge_verify/documentation/build.py", line 71, in _render_source_code_stat
bundled_code = language.bundle(stat.path, basedir=basedir, options={'include_paths': [basedir]}).decode()
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/hostedtoolcache/Python/3.13.2/x64/lib/python3.13/site-packages/onlinejudge_verify/languages/python.py", line 96, in bundle
raise NotImplementedError
NotImplementedError