結果

問題 No.2755 行列の共役類
ユーザー 👑 p-adicp-adic
提出日時 2023-03-24 11:04:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,084 ms / 3,500 ms
コード長 490 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-10-09 07:18:11
合計ジャッジ時間 21,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 47 ms
59,648 KB
testcase_03 AC 72 ms
69,120 KB
testcase_04 AC 53 ms
60,928 KB
testcase_05 AC 50 ms
60,800 KB
testcase_06 AC 45 ms
59,264 KB
testcase_07 AC 87 ms
73,728 KB
testcase_08 AC 67 ms
68,096 KB
testcase_09 AC 60 ms
65,408 KB
testcase_10 AC 55 ms
63,360 KB
testcase_11 AC 53 ms
62,208 KB
testcase_12 AC 48 ms
60,032 KB
testcase_13 AC 95 ms
75,648 KB
testcase_14 AC 60 ms
65,152 KB
testcase_15 AC 57 ms
63,872 KB
testcase_16 AC 51 ms
61,952 KB
testcase_17 AC 60 ms
60,928 KB
testcase_18 AC 51 ms
60,544 KB
testcase_19 AC 46 ms
59,136 KB
testcase_20 AC 58 ms
59,520 KB
testcase_21 AC 120 ms
75,520 KB
testcase_22 AC 63 ms
65,664 KB
testcase_23 AC 68 ms
66,688 KB
testcase_24 AC 65 ms
66,432 KB
testcase_25 AC 58 ms
64,512 KB
testcase_26 AC 55 ms
64,128 KB
testcase_27 AC 62 ms
59,776 KB
testcase_28 AC 114 ms
75,776 KB
testcase_29 AC 65 ms
66,944 KB
testcase_30 AC 117 ms
75,588 KB
testcase_31 AC 116 ms
75,392 KB
testcase_32 AC 83 ms
73,600 KB
testcase_33 AC 58 ms
64,256 KB
testcase_34 AC 65 ms
66,048 KB
testcase_35 AC 55 ms
62,720 KB
testcase_36 AC 52 ms
61,184 KB
testcase_37 AC 61 ms
64,256 KB
testcase_38 AC 69 ms
68,096 KB
testcase_39 AC 79 ms
72,320 KB
testcase_40 AC 98 ms
75,520 KB
testcase_41 AC 100 ms
75,776 KB
testcase_42 AC 171 ms
75,520 KB
testcase_43 AC 118 ms
75,520 KB
testcase_44 AC 72 ms
66,304 KB
testcase_45 AC 72 ms
66,944 KB
testcase_46 AC 56 ms
61,696 KB
testcase_47 AC 58 ms
63,104 KB
testcase_48 AC 147 ms
75,520 KB
testcase_49 AC 47 ms
60,416 KB
testcase_50 AC 71 ms
65,408 KB
testcase_51 AC 52 ms
60,544 KB
testcase_52 AC 54 ms
62,080 KB
testcase_53 AC 1,969 ms
78,300 KB
testcase_54 AC 1,044 ms
76,672 KB
testcase_55 AC 721 ms
76,032 KB
testcase_56 AC 2,068 ms
78,208 KB
testcase_57 AC 1,105 ms
76,800 KB
testcase_58 AC 2,093 ms
78,336 KB
testcase_59 AC 1,119 ms
76,800 KB
testcase_60 AC 635 ms
62,464 KB
testcase_61 AC 47 ms
59,008 KB
testcase_62 AC 3,084 ms
78,336 KB
testcase_63 AC 1,394 ms
76,672 KB
testcase_64 AC 945 ms
76,160 KB
testcase_65 AC 51 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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