結果

問題 No.1514 Squared Matching
ユーザー yuusanlondonyuusanlondon
提出日時 2021-06-17 07:10:53
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 317 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 841,256 KB
最終ジャッジ日時 2024-06-10 15:45:04
合計ジャッジ時間 20,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 MLE -
testcase_02 AC 353 ms
53,812 KB
testcase_03 AC 36 ms
52,120 KB
testcase_04 AC 35 ms
51,944 KB
testcase_05 AC 41 ms
58,984 KB
testcase_06 AC 52 ms
72,976 KB
testcase_07 AC 213 ms
210,208 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 231 ms
216,956 KB
testcase_23 AC 413 ms
372,956 KB
testcase_24 MLE -
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=0
maxsqrt=0
a=[1]*(n+1)
a[0]=0
i=2
while i*i<=n:
  j=i*i
  for k in range(j,n+1,j):
    a[k]=0
  i+=1
sums=[0]*(n+1)

currsum=0
for i in range(n+1):
  currsum+=a[i]
  sums[i]=currsum
while (maxsqrt+1)*(maxsqrt+1)<=n:
  maxsqrt+=1
b=1

while b*b<=n:
  ans+=(2*b-1)*(sums[n//(b*b)])
  b+=1
print(ans)
0