結果

問題 No.1653 Squarefree
ユーザー ansainansain
提出日時 2021-08-20 23:14:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,439 ms / 2,000 ms
コード長 1,846 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 254,052 KB
最終ジャッジ日時 2024-04-22 09:26:41
合計ジャッジ時間 38,852 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,430 ms
253,440 KB
testcase_01 AC 81 ms
75,848 KB
testcase_02 AC 86 ms
76,160 KB
testcase_03 AC 94 ms
79,744 KB
testcase_04 AC 86 ms
76,160 KB
testcase_05 AC 88 ms
75,648 KB
testcase_06 AC 85 ms
76,032 KB
testcase_07 AC 85 ms
75,776 KB
testcase_08 AC 85 ms
76,032 KB
testcase_09 AC 92 ms
75,776 KB
testcase_10 AC 95 ms
75,776 KB
testcase_11 AC 1,267 ms
253,748 KB
testcase_12 AC 1,242 ms
253,428 KB
testcase_13 AC 1,309 ms
253,188 KB
testcase_14 AC 1,299 ms
253,700 KB
testcase_15 AC 1,297 ms
253,828 KB
testcase_16 AC 1,314 ms
253,704 KB
testcase_17 AC 1,283 ms
253,968 KB
testcase_18 AC 1,276 ms
254,052 KB
testcase_19 AC 1,276 ms
253,700 KB
testcase_20 AC 1,401 ms
253,576 KB
testcase_21 AC 1,304 ms
253,828 KB
testcase_22 AC 1,439 ms
253,444 KB
testcase_23 AC 1,398 ms
253,696 KB
testcase_24 AC 1,282 ms
253,556 KB
testcase_25 AC 1,278 ms
253,820 KB
testcase_26 AC 1,306 ms
253,296 KB
testcase_27 AC 1,285 ms
253,492 KB
testcase_28 AC 1,257 ms
253,600 KB
testcase_29 AC 1,277 ms
253,708 KB
testcase_30 AC 1,279 ms
253,704 KB
testcase_31 AC 1,294 ms
253,824 KB
testcase_32 AC 1,420 ms
253,636 KB
testcase_33 AC 1,271 ms
253,656 KB
testcase_34 AC 1,258 ms
253,700 KB
testcase_35 AC 1,283 ms
253,444 KB
testcase_36 AC 79 ms
75,856 KB
testcase_37 AC 86 ms
76,032 KB
testcase_38 AC 84 ms
76,160 KB
testcase_39 AC 84 ms
75,904 KB
testcase_40 AC 88 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict, Counter, deque
from itertools import permutations, combinations, product, combinations_with_replacement, groupby, accumulate
import operator
from math import sqrt, gcd, factorial
#from math import isqrt, prod, comb  #python3.8用(notpypy)
#from bisect import bisect_left, bisect_right
#from functools import lru_cache, reduce
#from heapq import heappush, heappop, heapify, heappushpop, heapreplace
#import numpy as np
#import networkx as nx
#from networkx.utils import UnionFind
#from numba import njit, b1, i1, i4, i8, f8
#numba例 @njit(i1(i4[:], i8[:, :]),cache=True) 引数i4配列、i8 2次元配列,戻り値i1
#from scipy.sparse import csr_matrix
#from scipy.sparse.csgraph import shortest_path, floyd_warshall, dijkstra, bellman_ford, johnson, NegativeCycleError, maximum_bipartite_matching, maximum_flow, minimum_spanning_tree
def input(): return sys.stdin.readline().rstrip()
def divceil(n, k): return 1+(n-1)//k  # n/kの切り上げを返す
def yn(hantei, yes='Yes', no='No'): print(yes if hantei else no)


def main():
    mod = 10**9+7
    mod2 = 998244353
    l,r=map(int, input().split())
    hurui=[1]*(10**6+10)
    lr={i:i for i in range(l,r+1)}
    check={i:1 for i in range(l,r+1)}
    for i in range(2,10**6+7):
        if hurui[i]:
            for j in range(i*2,10**6+7,i):
                hurui[j]=0
            for j in range((l//i)*i,r+1,i):
                if l<=j<=r:
                    cnt=0
                    while lr[j]%i==0:
                        cnt+=1
                        lr[j]//=i
                    if cnt>=2:
                        check[j]=0
    def c(x):
        sq=sqrt(x)
        return sq.is_integer() and int(sq)**2==x and x!=1
    print(sum(1 for i in range(l,r+1) if check[i] and not(c(lr[i]))))
    


if __name__ == '__main__':
    main()
0