結果

問題 No.2755 行列の共役類
ユーザー ShirotsumeShirotsume
提出日時 2023-08-07 21:12:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,099 ms / 3,500 ms
コード長 1,043 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 79,556 KB
最終ジャッジ日時 2024-11-08 02:37:45
合計ジャッジ時間 23,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,424 KB
testcase_01 AC 47 ms
55,168 KB
testcase_02 AC 56 ms
63,232 KB
testcase_03 AC 81 ms
72,576 KB
testcase_04 AC 63 ms
64,256 KB
testcase_05 AC 61 ms
63,872 KB
testcase_06 AC 55 ms
62,848 KB
testcase_07 AC 100 ms
76,684 KB
testcase_08 AC 77 ms
71,552 KB
testcase_09 AC 70 ms
68,864 KB
testcase_10 AC 66 ms
66,944 KB
testcase_11 AC 63 ms
65,536 KB
testcase_12 AC 57 ms
63,744 KB
testcase_13 AC 104 ms
76,580 KB
testcase_14 AC 70 ms
68,480 KB
testcase_15 AC 68 ms
67,584 KB
testcase_16 AC 61 ms
65,408 KB
testcase_17 AC 68 ms
64,256 KB
testcase_18 AC 60 ms
63,744 KB
testcase_19 AC 57 ms
62,848 KB
testcase_20 AC 66 ms
63,360 KB
testcase_21 AC 133 ms
76,592 KB
testcase_22 AC 74 ms
69,248 KB
testcase_23 AC 77 ms
70,016 KB
testcase_24 AC 73 ms
70,144 KB
testcase_25 AC 67 ms
67,712 KB
testcase_26 AC 66 ms
67,200 KB
testcase_27 AC 70 ms
63,360 KB
testcase_28 AC 125 ms
76,476 KB
testcase_29 AC 75 ms
70,656 KB
testcase_30 AC 128 ms
76,804 KB
testcase_31 AC 126 ms
76,600 KB
testcase_32 AC 96 ms
76,544 KB
testcase_33 AC 67 ms
67,968 KB
testcase_34 AC 74 ms
69,376 KB
testcase_35 AC 64 ms
66,688 KB
testcase_36 AC 61 ms
64,640 KB
testcase_37 AC 71 ms
67,584 KB
testcase_38 AC 78 ms
72,064 KB
testcase_39 AC 93 ms
76,868 KB
testcase_40 AC 111 ms
76,848 KB
testcase_41 AC 111 ms
76,860 KB
testcase_42 AC 178 ms
76,800 KB
testcase_43 AC 126 ms
76,876 KB
testcase_44 AC 76 ms
70,016 KB
testcase_45 AC 78 ms
70,272 KB
testcase_46 AC 63 ms
65,408 KB
testcase_47 AC 68 ms
66,432 KB
testcase_48 AC 160 ms
76,748 KB
testcase_49 AC 56 ms
63,384 KB
testcase_50 AC 74 ms
68,992 KB
testcase_51 AC 59 ms
63,744 KB
testcase_52 AC 61 ms
65,664 KB
testcase_53 AC 1,963 ms
79,220 KB
testcase_54 AC 1,038 ms
77,824 KB
testcase_55 AC 719 ms
77,568 KB
testcase_56 AC 2,358 ms
79,460 KB
testcase_57 AC 1,098 ms
77,768 KB
testcase_58 AC 2,099 ms
79,556 KB
testcase_59 AC 1,115 ms
77,952 KB
testcase_60 AC 609 ms
66,304 KB
testcase_61 AC 55 ms
62,336 KB
testcase_62 AC 3,099 ms
79,516 KB
testcase_63 AC 1,408 ms
78,168 KB
testcase_64 AC 962 ms
77,248 KB
testcase_65 AC 59 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

B, C = map(int,input().split())
P = []
b = B
e = 1
for i in range(2,B):
    if i*i>b:break
    while b % i == 0:
        b //= i
        P.append(i)
        e *= (i - 1)
        while b % i == 0:
            b //= i
            e *= i
if b>1:
    P.append(b)
    e *= (b - 1)
n = len(P)
u = [pow(i,e-1,B)for i in range(B)]
d = B // C
b = d * B
found = [0] * b
answer = 0
for i in range(b):
    if found[i]:continue
    q = i // d
    r = i % d
    c = 1
    for p in P:
        c *= q % p
    if c == 0:
        continue
    answer +=1
    if answer >100:
        print("100+")
        exit()
    for j in range(b):
        s = j // d
        t = j % d
        c = 1
        for p in P:
            c *=s % p
        found[(u[s] * q * s % B) * d + (u[s] * (q * t + r - t)) % d] |= c
print(answer)
0