結果

問題 No.2798 Multiple Chain
ユーザー 👑 p-adicp-adic
提出日時 2024-10-19 15:51:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 631 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,448 KB
最終ジャッジ日時 2024-10-19 15:51:14
合計ジャッジ時間 7,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,244 KB
testcase_01 AC 629 ms
76,144 KB
testcase_02 AC 43 ms
62,460 KB
testcase_03 AC 42 ms
62,184 KB
testcase_04 AC 41 ms
60,752 KB
testcase_05 AC 44 ms
61,436 KB
testcase_06 AC 43 ms
62,452 KB
testcase_07 AC 45 ms
60,384 KB
testcase_08 AC 44 ms
61,124 KB
testcase_09 AC 42 ms
61,988 KB
testcase_10 AC 44 ms
61,804 KB
testcase_11 AC 44 ms
61,660 KB
testcase_12 AC 44 ms
61,200 KB
testcase_13 AC 43 ms
60,968 KB
testcase_14 AC 43 ms
61,160 KB
testcase_15 AC 43 ms
61,468 KB
testcase_16 AC 43 ms
61,220 KB
testcase_17 AC 43 ms
61,380 KB
testcase_18 AC 43 ms
60,752 KB
testcase_19 AC 43 ms
60,696 KB
testcase_20 AC 499 ms
76,028 KB
testcase_21 AC 430 ms
75,968 KB
testcase_22 AC 624 ms
76,108 KB
testcase_23 AC 631 ms
76,092 KB
testcase_24 AC 556 ms
76,264 KB
testcase_25 AC 43 ms
61,924 KB
testcase_26 AC 44 ms
63,484 KB
testcase_27 AC 42 ms
61,120 KB
testcase_28 AC 45 ms
64,352 KB
testcase_29 AC 47 ms
64,796 KB
testcase_30 AC 55 ms
64,636 KB
testcase_31 AC 46 ms
62,164 KB
testcase_32 AC 69 ms
76,132 KB
testcase_33 AC 48 ms
63,296 KB
testcase_34 AC 98 ms
76,240 KB
testcase_35 AC 44 ms
61,388 KB
testcase_36 AC 48 ms
65,060 KB
testcase_37 AC 45 ms
61,012 KB
testcase_38 AC 47 ms
63,948 KB
testcase_39 AC 46 ms
61,716 KB
testcase_40 AC 45 ms
60,540 KB
testcase_41 AC 45 ms
61,668 KB
testcase_42 AC 45 ms
61,732 KB
testcase_43 AC 45 ms
61,772 KB
testcase_44 AC 46 ms
61,952 KB
testcase_45 AC 44 ms
60,228 KB
testcase_46 AC 43 ms
61,696 KB
testcase_47 AC 43 ms
60,380 KB
testcase_48 AC 43 ms
62,020 KB
testcase_49 AC 45 ms
60,936 KB
testcase_50 AC 46 ms
61,372 KB
testcase_51 AC 108 ms
76,112 KB
testcase_52 AC 63 ms
76,448 KB
testcase_53 AC 51 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
n=int(input())
P,t=set(),n
for i in R(2,min(n+1,9**4)):
	if t%i<1:P.add(i)
	while t%i<1:t//=i
D=[t]*(t>1)
def G(a,b):
	while a:a,b=b%a,a
	return b
while D:
	t=D.pop()
	c=int(t**0.25)*9
	if t<9**8:P.add(t)
	else:
		while c:
			x,d=c,1
			y=(x*x+1)%t
			while(d<2)*c:x,y,d,c=(x*x+1)%t,(y**4+2*y*y+2)%t,G(abs(x-y),t),c-1
			if d<t and c:t//=d;c=G(t,d);D+=[t//c,d//c,c];break
		else:P.add(t)
P.discard(1)
P=list(P)
for i in R(len(P)):
	p,c=P[i],0
	while n%p<1:n//=p;c+=1
	P[i]=[p,c]
D=[[i==j for j in R(65)]for i in R(65)]
for i in R(65):
	for j in R(i-1,-1,-1):D[i][j]=D[i][j+1]+D[i-j][j]
a=1
for[p,c]in P:a*=D[c][1]
print(a)
0