結果

問題 No.2798 Multiple Chain
ユーザー 👑 p-adicp-adic
提出日時 2024-07-07 22:12:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 76,216 KB
最終ジャッジ日時 2024-07-07 22:12:19
合計ジャッジ時間 6,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,744 KB
testcase_01 AC 580 ms
76,116 KB
testcase_02 AC 40 ms
61,300 KB
testcase_03 AC 39 ms
60,144 KB
testcase_04 AC 38 ms
60,668 KB
testcase_05 AC 41 ms
61,248 KB
testcase_06 AC 40 ms
60,880 KB
testcase_07 AC 38 ms
60,676 KB
testcase_08 AC 38 ms
60,996 KB
testcase_09 AC 39 ms
60,500 KB
testcase_10 AC 39 ms
61,300 KB
testcase_11 AC 42 ms
62,288 KB
testcase_12 AC 42 ms
61,952 KB
testcase_13 AC 39 ms
61,120 KB
testcase_14 AC 39 ms
60,972 KB
testcase_15 AC 41 ms
60,500 KB
testcase_16 AC 41 ms
60,740 KB
testcase_17 AC 40 ms
60,900 KB
testcase_18 AC 51 ms
60,448 KB
testcase_19 AC 39 ms
61,600 KB
testcase_20 AC 457 ms
76,096 KB
testcase_21 AC 403 ms
75,976 KB
testcase_22 AC 569 ms
76,100 KB
testcase_23 AC 568 ms
76,216 KB
testcase_24 AC 523 ms
76,088 KB
testcase_25 AC 41 ms
61,464 KB
testcase_26 AC 40 ms
62,216 KB
testcase_27 AC 41 ms
61,728 KB
testcase_28 AC 43 ms
63,308 KB
testcase_29 AC 44 ms
64,816 KB
testcase_30 AC 42 ms
63,796 KB
testcase_31 AC 40 ms
61,820 KB
testcase_32 AC 61 ms
76,060 KB
testcase_33 AC 42 ms
63,116 KB
testcase_34 AC 88 ms
76,088 KB
testcase_35 AC 40 ms
60,056 KB
testcase_36 AC 43 ms
64,444 KB
testcase_37 AC 39 ms
60,880 KB
testcase_38 AC 42 ms
63,916 KB
testcase_39 AC 40 ms
62,004 KB
testcase_40 AC 39 ms
60,308 KB
testcase_41 AC 47 ms
60,804 KB
testcase_42 AC 50 ms
60,672 KB
testcase_43 AC 40 ms
61,036 KB
testcase_44 AC 43 ms
61,980 KB
testcase_45 AC 41 ms
60,112 KB
testcase_46 AC 40 ms
60,208 KB
testcase_47 AC 39 ms
60,376 KB
testcase_48 AC 39 ms
60,704 KB
testcase_49 AC 40 ms
60,640 KB
testcase_50 AC 40 ms
61,644 KB
testcase_51 AC 93 ms
75,896 KB
testcase_52 AC 59 ms
76,176 KB
testcase_53 AC 51 ms
68,768 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=[[1]*65for n in R(65)]
for i in R(63,0,-1):
	for n in R(i+1,65):D[n][i]=D[n][i+1]+D[n-i][i]*(n>=i*2)
a=1
for[p,c]in P:a*=D[c][1]
print(a)
0