結果

問題 No.1514 Squared Matching
ユーザー yuusanlondonyuusanlondon
提出日時 2021-06-17 07:13:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,048 ms / 4,000 ms
コード長 314 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 450,284 KB
最終ジャッジ日時 2025-01-02 07:42:10
合計ジャッジ時間 16,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,604 KB
testcase_01 AC 1,048 ms
450,284 KB
testcase_02 AC 38 ms
52,156 KB
testcase_03 AC 38 ms
53,184 KB
testcase_04 AC 40 ms
53,224 KB
testcase_05 AC 45 ms
58,844 KB
testcase_06 AC 55 ms
67,084 KB
testcase_07 AC 216 ms
136,512 KB
testcase_08 AC 957 ms
434,872 KB
testcase_09 AC 746 ms
387,912 KB
testcase_10 AC 819 ms
416,808 KB
testcase_11 AC 838 ms
430,776 KB
testcase_12 AC 848 ms
440,624 KB
testcase_13 AC 866 ms
446,504 KB
testcase_14 AC 878 ms
447,684 KB
testcase_15 AC 867 ms
449,168 KB
testcase_16 AC 871 ms
449,384 KB
testcase_17 AC 869 ms
449,276 KB
testcase_18 AC 876 ms
449,444 KB
testcase_19 AC 871 ms
450,128 KB
testcase_20 AC 879 ms
450,148 KB
testcase_21 AC 887 ms
450,108 KB
testcase_22 AC 213 ms
140,844 KB
testcase_23 AC 373 ms
218,044 KB
testcase_24 AC 535 ms
292,912 KB
testcase_25 AC 702 ms
371,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

currsum=0
for i in range(n+1):
  currsum+=sums[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