結果

問題 No.2755 行列の共役類
ユーザー ShirotsumeShirotsume
提出日時 2023-08-07 21:47:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,110 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-11-08 03:13:09
合計ジャッジ時間 23,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,424 KB
testcase_01 AC 51 ms
55,424 KB
testcase_02 WA -
testcase_03 AC 137 ms
77,440 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 143 ms
77,440 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 167 ms
77,312 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 128 ms
77,312 KB
testcase_25 WA -
testcase_26 AC 121 ms
76,928 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 251 ms
77,440 KB
testcase_31 AC 204 ms
77,312 KB
testcase_32 AC 159 ms
76,928 KB
testcase_33 WA -
testcase_34 AC 133 ms
77,440 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 193 ms
77,056 KB
testcase_40 AC 191 ms
77,696 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 212 ms
76,928 KB
testcase_50 WA -
testcase_51 AC 279 ms
77,184 KB
testcase_52 AC 324 ms
76,928 KB
testcase_53 TLE -
testcase_54 AC 2,244 ms
77,056 KB
testcase_55 AC 1,700 ms
77,312 KB
testcase_56 TLE -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
権限があれば一括ダウンロードができます

ソースコード

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
from math import gcd
def inv_gcd(a,b):
    a=a%b
    if a==0:
        return (b,0)
    s=b;t=a
    m0=0;m1=1
    while(t):
        u=s//t
        s-=t*u
        m0-=m1*u
        s,t=t,s
        m0,m1=m1,m0
    if m0<0:
        m0+=b//s
    return (s,m0)
def inv_mod(x,m):
    assert 1<=m
    z=inv_gcd(x,m)
    assert z[0]==1
    return z[1]
B, C = mi()

S = set()

ans = 0
for p1 in range(0, B):
    for p2 in range(0, B):
        if gcd(p1, B) != 1 or p2 % C != 0 or (p1, p2) in S:
            continue
        ans += 1
        if ans > 100:
            print('100+'), exit()
        for r1 in range(0, B):
            for r2 in range(0, B):
                if gcd(r1, B) != 1 or r2 % C != 0:
                    continue
                q1 = p1 % B
                q2 = (-r2 * (p1 * r2 + p2) * inv_mod(r1, B)) % B
                S.add((q1, q2))

print(ans)



0