結果

問題 No.1653 Squarefree
ユーザー shobonvipshobonvip
提出日時 2022-03-30 17:41:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 100,020 KB
最終ジャッジ日時 2024-11-15 07:56:01
合計ジャッジ時間 6,319 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 94 ms
73,568 KB
testcase_02 AC 91 ms
73,916 KB
testcase_03 AC 95 ms
73,948 KB
testcase_04 AC 95 ms
73,160 KB
testcase_05 AC 102 ms
73,624 KB
testcase_06 AC 93 ms
73,812 KB
testcase_07 AC 93 ms
73,908 KB
testcase_08 AC 91 ms
73,592 KB
testcase_09 AC 96 ms
74,132 KB
testcase_10 AC 94 ms
73,620 KB
testcase_11 AC 131 ms
100,020 KB
testcase_12 AC 128 ms
99,680 KB
testcase_13 AC 122 ms
96,600 KB
testcase_14 AC 125 ms
95,916 KB
testcase_15 AC 128 ms
96,440 KB
testcase_16 AC 121 ms
95,760 KB
testcase_17 AC 125 ms
97,316 KB
testcase_18 AC 119 ms
95,636 KB
testcase_19 AC 128 ms
97,312 KB
testcase_20 AC 123 ms
97,480 KB
testcase_21 AC 125 ms
96,496 KB
testcase_22 AC 127 ms
96,788 KB
testcase_23 AC 120 ms
95,248 KB
testcase_24 AC 122 ms
95,900 KB
testcase_25 AC 120 ms
95,280 KB
testcase_26 AC 117 ms
96,012 KB
testcase_27 AC 118 ms
96,672 KB
testcase_28 AC 120 ms
95,752 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 121 ms
95,952 KB
testcase_32 AC 118 ms
96,956 KB
testcase_33 AC 122 ms
96,000 KB
testcase_34 AC 123 ms
96,492 KB
testcase_35 AC 120 ms
96,712 KB
testcase_36 AC 91 ms
74,116 KB
testcase_37 WA -
testcase_38 AC 95 ms
73,624 KB
testcase_39 AC 100 ms
74,136 KB
testcase_40 AC 94 ms
73,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def sqrt(n):
	ins = math.floor(math.sqrt(n))
	if ins**2 > n:
		ins -= 1
	return ins

l,r = map(int,input().split())
v = [l+i for i in range(r-l+1)]
w = [0 for i in range(r-l+1)]
		
dp = [0 for i in range(10**6+1)]
for i in range(2, 10**6):
	if dp[i] == 0:
		#A/(i**2) = integer
		for j in range((l+i**2-1)//(i**2), r//(i**2)+1):
			w[j*(i**2) - l] = 1
		#A/i = square
		for j in range(max(2,sqrt(l//i)+1), sqrt(r//i)+1):
			#print(j**2 * i)
			w[i*(j**2) - l] = 1
		for j in range(i, 10**6+1, i):
			dp[j] = 1

print(r-l+1 - sum(w))
0