結果

問題 No.1409 Simple Math in yukicoder
ユーザー vwxyzvwxyz
提出日時 2023-11-23 04:03:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 1,778 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 90,848 KB
最終ジャッジ日時 2023-11-23 04:03:57
合計ジャッジ時間 37,006 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
88,928 KB
testcase_01 AC 139 ms
88,928 KB
testcase_02 AC 141 ms
88,928 KB
testcase_03 AC 145 ms
88,928 KB
testcase_04 AC 140 ms
88,928 KB
testcase_05 AC 141 ms
88,928 KB
testcase_06 AC 141 ms
88,928 KB
testcase_07 AC 154 ms
89,824 KB
testcase_08 AC 187 ms
90,464 KB
testcase_09 AC 157 ms
89,824 KB
testcase_10 AC 176 ms
90,208 KB
testcase_11 AC 185 ms
90,464 KB
testcase_12 AC 183 ms
90,208 KB
testcase_13 AC 157 ms
89,824 KB
testcase_14 AC 158 ms
89,824 KB
testcase_15 AC 157 ms
89,824 KB
testcase_16 AC 165 ms
90,080 KB
testcase_17 AC 194 ms
90,464 KB
testcase_18 AC 208 ms
90,208 KB
testcase_19 AC 179 ms
90,720 KB
testcase_20 AC 175 ms
90,208 KB
testcase_21 AC 169 ms
90,208 KB
testcase_22 AC 176 ms
90,208 KB
testcase_23 AC 157 ms
89,824 KB
testcase_24 AC 154 ms
89,824 KB
testcase_25 AC 185 ms
90,848 KB
testcase_26 AC 182 ms
90,464 KB
testcase_27 AC 196 ms
90,848 KB
testcase_28 AC 220 ms
90,464 KB
testcase_29 AC 193 ms
90,464 KB
testcase_30 AC 223 ms
90,464 KB
testcase_31 AC 195 ms
90,464 KB
testcase_32 AC 194 ms
90,464 KB
testcase_33 AC 198 ms
90,848 KB
testcase_34 AC 200 ms
90,848 KB
testcase_35 AC 198 ms
90,848 KB
testcase_36 AC 203 ms
90,464 KB
testcase_37 AC 205 ms
90,592 KB
testcase_38 AC 212 ms
90,592 KB
testcase_39 AC 202 ms
90,464 KB
testcase_40 AC 203 ms
90,464 KB
testcase_41 AC 201 ms
90,464 KB
testcase_42 AC 201 ms
90,464 KB
testcase_43 AC 199 ms
90,464 KB
testcase_44 AC 200 ms
90,464 KB
testcase_45 AC 205 ms
90,464 KB
testcase_46 AC 204 ms
90,592 KB
testcase_47 AC 205 ms
90,464 KB
testcase_48 AC 203 ms
90,592 KB
testcase_49 AC 202 ms
90,464 KB
testcase_50 AC 205 ms
90,464 KB
testcase_51 AC 208 ms
90,592 KB
testcase_52 AC 200 ms
90,464 KB
testcase_53 AC 198 ms
90,464 KB
testcase_54 AC 199 ms
90,592 KB
testcase_55 AC 212 ms
90,592 KB
testcase_56 AC 201 ms
90,464 KB
testcase_57 AC 198 ms
90,464 KB
testcase_58 AC 199 ms
90,464 KB
testcase_59 AC 198 ms
90,464 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