結果

問題 No.1653 Squarefree
ユーザー shobonvipshobonvip
提出日時 2022-03-30 17:13:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 554 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 171,136 KB
最終ジャッジ日時 2024-11-15 07:05:58
合計ジャッジ時間 86,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 108 ms
81,664 KB
testcase_02 AC 80 ms
160,128 KB
testcase_03 AC 1,630 ms
83,712 KB
testcase_04 AC 210 ms
164,224 KB
testcase_05 AC 133 ms
82,048 KB
testcase_06 AC 102 ms
164,992 KB
testcase_07 AC 127 ms
83,236 KB
testcase_08 AC 356 ms
166,572 KB
testcase_09 AC 196 ms
81,920 KB
testcase_10 AC 89 ms
166,272 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 85 ms
71,936 KB
testcase_37 WA -
testcase_38 AC 82 ms
71,808 KB
testcase_39 AC 94 ms
76,928 KB
testcase_40 AC 93 ms
171,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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:
		for j in range(r-l+1):
			if v[j]%(i**2) == 0:
				w[j] = 1
			while v[j]%i == 0:
				v[j]//=i
		for j in range(i, 10**6+1, i):
			dp[j] = 1

#残ったもの… 10**12 - 10**18

for j in range(r-l+1):
	if w[j] == 0:
		ins = math.floor(math.sqrt(v[j] // 2))
		if ins**2 > v[j]:
			ins -= 1
		if ins > 1 and ins**2 == v[j]:
			w[j] = 1

#print(w)

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