結果

問題 No.1653 Squarefree
ユーザー shobonvipshobonvip
提出日時 2022-03-30 17:31:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,592 KB
最終ジャッジ日時 2024-11-15 07:37:59
合計ジャッジ時間 6,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 83 ms
71,552 KB
testcase_02 AC 81 ms
71,680 KB
testcase_03 AC 89 ms
71,936 KB
testcase_04 AC 88 ms
71,552 KB
testcase_05 AC 84 ms
71,552 KB
testcase_06 AC 85 ms
71,424 KB
testcase_07 AC 83 ms
71,808 KB
testcase_08 AC 82 ms
71,808 KB
testcase_09 AC 86 ms
71,680 KB
testcase_10 AC 84 ms
71,872 KB
testcase_11 AC 114 ms
94,080 KB
testcase_12 AC 108 ms
93,440 KB
testcase_13 AC 111 ms
94,080 KB
testcase_14 AC 113 ms
93,624 KB
testcase_15 AC 110 ms
93,952 KB
testcase_16 AC 108 ms
93,568 KB
testcase_17 AC 113 ms
94,336 KB
testcase_18 AC 112 ms
93,568 KB
testcase_19 AC 110 ms
94,592 KB
testcase_20 AC 111 ms
94,592 KB
testcase_21 AC 106 ms
94,464 KB
testcase_22 AC 113 ms
94,592 KB
testcase_23 AC 111 ms
93,568 KB
testcase_24 WA -
testcase_25 AC 110 ms
94,080 KB
testcase_26 AC 110 ms
93,312 KB
testcase_27 AC 106 ms
93,568 KB
testcase_28 AC 117 ms
94,080 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 110 ms
93,440 KB
testcase_32 AC 113 ms
93,952 KB
testcase_33 WA -
testcase_34 AC 111 ms
94,464 KB
testcase_35 AC 111 ms
93,824 KB
testcase_36 AC 91 ms
71,424 KB
testcase_37 WA -
testcase_38 AC 92 ms
71,424 KB
testcase_39 AC 89 ms
71,552 KB
testcase_40 AC 88 ms
71,756 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((l+i**2-1)//(i**2), r//(i**2)+1):
			w[j*(i**2) - l] = 1
			#print(j*(i**2))
			#print(j*(i**2) - l)
		for j in range(i, 10**6+1, i):
			dp[j] = 1

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