結果

問題 No.2755 行列の共役類
ユーザー 👑 p-adicp-adic
提出日時 2023-03-24 11:03:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 490 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-10-09 07:17:04
合計ジャッジ時間 32,382 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
24,064 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 41 ms
10,752 KB
testcase_03 AC 460 ms
10,752 KB
testcase_04 AC 453 ms
10,752 KB
testcase_05 AC 243 ms
10,752 KB
testcase_06 AC 136 ms
10,752 KB
testcase_07 AC 697 ms
10,752 KB
testcase_08 AC 369 ms
10,752 KB
testcase_09 AC 247 ms
10,752 KB
testcase_10 AC 163 ms
10,752 KB
testcase_11 AC 129 ms
10,752 KB
testcase_12 AC 64 ms
10,752 KB
testcase_13 AC 848 ms
10,752 KB
testcase_14 AC 240 ms
10,624 KB
testcase_15 AC 183 ms
10,624 KB
testcase_16 AC 113 ms
10,624 KB
testcase_17 AC 720 ms
10,752 KB
testcase_18 AC 249 ms
10,624 KB
testcase_19 AC 101 ms
10,752 KB
testcase_20 AC 834 ms
10,880 KB
testcase_21 AC 1,200 ms
10,880 KB
testcase_22 AC 328 ms
10,880 KB
testcase_23 AC 377 ms
10,752 KB
testcase_24 AC 325 ms
10,624 KB
testcase_25 AC 212 ms
10,752 KB
testcase_26 AC 182 ms
10,624 KB
testcase_27 AC 1,083 ms
10,880 KB
testcase_28 AC 1,269 ms
10,880 KB
testcase_29 AC 342 ms
10,752 KB
testcase_30 AC 1,322 ms
10,752 KB
testcase_31 AC 1,358 ms
10,880 KB
testcase_32 AC 689 ms
10,752 KB
testcase_33 AC 203 ms
10,752 KB
testcase_34 AC 286 ms
10,752 KB
testcase_35 AC 158 ms
10,624 KB
testcase_36 AC 112 ms
10,752 KB
testcase_37 AC 231 ms
10,624 KB
testcase_38 AC 342 ms
10,624 KB
testcase_39 AC 622 ms
10,880 KB
testcase_40 AC 917 ms
10,880 KB
testcase_41 AC 964 ms
10,752 KB
testcase_42 AC 2,456 ms
10,880 KB
testcase_43 AC 1,298 ms
10,752 KB
testcase_44 AC 351 ms
10,624 KB
testcase_45 AC 373 ms
10,624 KB
testcase_46 AC 129 ms
10,624 KB
testcase_47 AC 209 ms
10,752 KB
testcase_48 AC 1,876 ms
10,752 KB
testcase_49 AC 63 ms
10,624 KB
testcase_50 AC 327 ms
10,752 KB
testcase_51 AC 80 ms
10,624 KB
testcase_52 AC 89 ms
10,752 KB
testcase_53 TLE -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
権限があれば一括ダウンロードができます

ソースコード

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