結果

問題 No.1409 Simple Math in yukicoder
ユーザー vwxyzvwxyz
提出日時 2023-11-23 04:03:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,778 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-09-26 07:52:28
合計ジャッジ時間 34,514 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
89,736 KB
testcase_01 AC 131 ms
89,688 KB
testcase_02 AC 126 ms
89,864 KB
testcase_03 AC 129 ms
89,728 KB
testcase_04 AC 137 ms
89,528 KB
testcase_05 AC 133 ms
89,728 KB
testcase_06 AC 133 ms
89,728 KB
testcase_07 AC 141 ms
90,788 KB
testcase_08 AC 167 ms
91,392 KB
testcase_09 AC 138 ms
90,624 KB
testcase_10 AC 159 ms
91,008 KB
testcase_11 AC 172 ms
91,136 KB
testcase_12 AC 175 ms
90,624 KB
testcase_13 AC 150 ms
90,292 KB
testcase_14 AC 147 ms
90,752 KB
testcase_15 AC 146 ms
90,496 KB
testcase_16 AC 157 ms
90,752 KB
testcase_17 AC 171 ms
91,256 KB
testcase_18 AC 167 ms
90,788 KB
testcase_19 AC 173 ms
90,684 KB
testcase_20 AC 163 ms
90,752 KB
testcase_21 AC 162 ms
90,756 KB
testcase_22 AC 169 ms
90,752 KB
testcase_23 AC 141 ms
90,368 KB
testcase_24 AC 134 ms
90,312 KB
testcase_25 AC 163 ms
91,904 KB
testcase_26 AC 164 ms
91,596 KB
testcase_27 AC 179 ms
91,520 KB
testcase_28 AC 173 ms
91,136 KB
testcase_29 AC 183 ms
91,204 KB
testcase_30 AC 173 ms
91,184 KB
testcase_31 AC 185 ms
91,392 KB
testcase_32 AC 183 ms
91,436 KB
testcase_33 AC 191 ms
91,648 KB
testcase_34 AC 181 ms
91,648 KB
testcase_35 AC 177 ms
91,776 KB
testcase_36 AC 176 ms
91,548 KB
testcase_37 AC 189 ms
91,172 KB
testcase_38 AC 186 ms
91,136 KB
testcase_39 AC 189 ms
91,520 KB
testcase_40 AC 189 ms
91,264 KB
testcase_41 AC 182 ms
91,284 KB
testcase_42 AC 185 ms
91,264 KB
testcase_43 AC 183 ms
91,264 KB
testcase_44 AC 189 ms
91,264 KB
testcase_45 AC 190 ms
91,204 KB
testcase_46 AC 191 ms
91,324 KB
testcase_47 AC 186 ms
91,264 KB
testcase_48 AC 186 ms
91,264 KB
testcase_49 AC 181 ms
91,212 KB
testcase_50 AC 181 ms
91,576 KB
testcase_51 AC 190 ms
91,280 KB
testcase_52 AC 190 ms
91,316 KB
testcase_53 AC 182 ms
91,080 KB
testcase_54 AC 186 ms
91,136 KB
testcase_55 AC 187 ms
91,264 KB
testcase_56 AC 198 ms
91,332 KB
testcase_57 AC 188 ms
91,136 KB
testcase_58 AC 187 ms
91,264 KB
testcase_59 AC 184 ms
91,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
#sys.set_int_max_str_digits(10**9)

def Primitive_Root(p):
    if p==2:
        return 1
    if p==167772161:
        return 3
    if p==469762049:
        return 3
    if p==754974721:
        return 11
    if p==998244353:
        return 3
    if p==10**9+7:
        return 5
    divisors=[2]
    pp=(p-1)//2
    while pp%2==0:
        pp//=2
    for d in range(3,pp+1,2):
        if d**2>pp:
            break
        if pp%d==0:
            divisors.append(d)
            while pp%d==0:
                pp//=d
    if pp>1:
        divisors.append(pp)
    primitive_root=2
    while True:
        for d in divisors:
            if pow(primitive_root,(p-1)//d,p)==1:
                break
        else:
            return primitive_root
        primitive_root+=1

T=int(readline())
for t in range(T):
    v,x=map(int,readline().split())
    p=Primitive_Root(v*x+1)
    pow_p=pow(p,v,v*x+1)
    ans_lst=[1]
    for _ in range(1,x):
        ans_lst.append((ans_lst[-1]*pow_p-1)%(v*x+1)+1)
    ans_lst.sort()
    print(*ans_lst)
0