結果

問題 No.2829 GCD Divination
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-03 00:26:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 221,200 KB
最終ジャッジ日時 2024-08-03 00:26:32
合計ジャッジ時間 6,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,140 KB
testcase_01 AC 34 ms
52,192 KB
testcase_02 AC 235 ms
214,384 KB
testcase_03 AC 35 ms
52,948 KB
testcase_04 AC 257 ms
221,200 KB
testcase_05 AC 271 ms
211,736 KB
testcase_06 AC 249 ms
189,308 KB
testcase_07 AC 216 ms
176,784 KB
testcase_08 AC 179 ms
144,124 KB
testcase_09 AC 155 ms
131,032 KB
testcase_10 AC 143 ms
146,632 KB
testcase_11 AC 43 ms
62,052 KB
testcase_12 AC 72 ms
87,208 KB
testcase_13 AC 205 ms
198,248 KB
testcase_14 AC 153 ms
153,020 KB
testcase_15 AC 120 ms
127,516 KB
testcase_16 AC 74 ms
90,576 KB
testcase_17 AC 60 ms
76,240 KB
testcase_18 AC 54 ms
72,104 KB
testcase_19 AC 64 ms
81,208 KB
testcase_20 AC 39 ms
58,568 KB
testcase_21 AC 112 ms
117,348 KB
testcase_22 AC 118 ms
126,540 KB
testcase_23 AC 143 ms
144,864 KB
testcase_24 AC 182 ms
182,900 KB
testcase_25 AC 221 ms
210,328 KB
testcase_26 AC 116 ms
122,776 KB
testcase_27 AC 174 ms
170,772 KB
testcase_28 AC 66 ms
82,736 KB
testcase_29 AC 119 ms
128,236 KB
testcase_30 AC 209 ms
205,588 KB
testcase_31 AC 60 ms
76,712 KB
testcase_32 AC 140 ms
144,012 KB
testcase_33 AC 116 ms
122,508 KB
testcase_34 AC 182 ms
171,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
P=[]
i=1
while i*i<=n:
  if n%i==0:
    P+=[i,n//i]
  i+=1
P=sorted(set(P))
q=[0]*(n+1)
for i in range(2,n+1):
  if n%i==0:
    p=[]
    c=[]
    for j in range(len(P)):
      if P[j]<=i:
        if i%P[j]==0:
          p+=[P[j]]
          c+=[i//P[j]]
      else:
        break
    for ii in reversed(range(len(p))):
      for jj in range(ii+1,len(p)):
        if p[jj]%p[ii]==0:
          c[ii]-=c[jj]
    q[i]=(sum(c[ii]*q[p[ii]] for ii in range(len(p)-1))+i)/(i-c[len(p)-1])
print(q[n])
0