結果

問題 No.2755 行列の共役類
ユーザー ShirotsumeShirotsume
提出日時 2023-08-07 21:44:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,041 ms / 3,500 ms
コード長 1,030 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-11-08 03:08:32
合計ジャッジ時間 22,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,168 KB
testcase_01 AC 52 ms
55,040 KB
testcase_02 AC 60 ms
62,720 KB
testcase_03 AC 90 ms
72,448 KB
testcase_04 AC 66 ms
64,000 KB
testcase_05 AC 64 ms
63,488 KB
testcase_06 AC 60 ms
62,208 KB
testcase_07 AC 107 ms
76,544 KB
testcase_08 AC 87 ms
71,168 KB
testcase_09 AC 76 ms
68,096 KB
testcase_10 AC 72 ms
66,560 KB
testcase_11 AC 67 ms
65,152 KB
testcase_12 AC 62 ms
63,488 KB
testcase_13 AC 114 ms
76,416 KB
testcase_14 AC 76 ms
68,352 KB
testcase_15 AC 72 ms
67,072 KB
testcase_16 AC 66 ms
65,024 KB
testcase_17 AC 70 ms
64,000 KB
testcase_18 AC 64 ms
63,616 KB
testcase_19 AC 64 ms
62,336 KB
testcase_20 AC 69 ms
62,848 KB
testcase_21 AC 139 ms
76,544 KB
testcase_22 AC 82 ms
68,864 KB
testcase_23 AC 85 ms
69,760 KB
testcase_24 AC 81 ms
69,632 KB
testcase_25 AC 74 ms
67,456 KB
testcase_26 AC 72 ms
67,072 KB
testcase_27 AC 73 ms
62,976 KB
testcase_28 AC 134 ms
76,672 KB
testcase_29 AC 83 ms
70,016 KB
testcase_30 AC 138 ms
76,672 KB
testcase_31 AC 136 ms
76,672 KB
testcase_32 AC 106 ms
76,416 KB
testcase_33 AC 74 ms
67,328 KB
testcase_34 AC 81 ms
69,248 KB
testcase_35 AC 72 ms
66,176 KB
testcase_36 AC 67 ms
64,384 KB
testcase_37 AC 77 ms
67,456 KB
testcase_38 AC 85 ms
71,424 KB
testcase_39 AC 105 ms
76,672 KB
testcase_40 AC 119 ms
76,544 KB
testcase_41 AC 121 ms
76,672 KB
testcase_42 AC 186 ms
76,672 KB
testcase_43 AC 134 ms
76,672 KB
testcase_44 AC 86 ms
69,376 KB
testcase_45 AC 87 ms
70,144 KB
testcase_46 AC 69 ms
65,152 KB
testcase_47 AC 75 ms
66,432 KB
testcase_48 AC 167 ms
76,544 KB
testcase_49 AC 62 ms
63,232 KB
testcase_50 AC 82 ms
68,480 KB
testcase_51 AC 63 ms
63,488 KB
testcase_52 AC 69 ms
65,408 KB
testcase_53 AC 1,953 ms
79,232 KB
testcase_54 AC 1,020 ms
77,696 KB
testcase_55 AC 706 ms
77,568 KB
testcase_56 AC 2,048 ms
79,360 KB
testcase_57 AC 1,076 ms
77,952 KB
testcase_58 AC 2,074 ms
79,616 KB
testcase_59 AC 1,090 ms
78,080 KB
testcase_60 AC 556 ms
65,664 KB
testcase_61 AC 59 ms
62,080 KB
testcase_62 AC 3,041 ms
79,488 KB
testcase_63 AC 1,396 ms
77,696 KB
testcase_64 AC 955 ms
77,568 KB
testcase_65 AC 66 ms
64,128 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[q % B * d + (u[s] * (q * t + r - t)) % d] |= c
print(answer)
0