結果

問題 No.237 作図可能性
ユーザー 👑 KazunKazun
提出日時 2020-06-12 14:13:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 54,760 KB
最終ジャッジ日時 2024-06-24 03:53:05
合計ジャッジ時間 2,782 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,284 KB
testcase_01 AC 40 ms
52,992 KB
testcase_02 AC 39 ms
53,392 KB
testcase_03 AC 40 ms
52,588 KB
testcase_04 AC 40 ms
52,788 KB
testcase_05 AC 40 ms
54,064 KB
testcase_06 AC 39 ms
52,532 KB
testcase_07 AC 40 ms
52,868 KB
testcase_08 AC 40 ms
52,920 KB
testcase_09 AC 40 ms
52,928 KB
testcase_10 AC 39 ms
53,640 KB
testcase_11 AC 38 ms
53,220 KB
testcase_12 AC 39 ms
53,188 KB
testcase_13 AC 39 ms
52,644 KB
testcase_14 AC 39 ms
52,728 KB
testcase_15 AC 39 ms
53,664 KB
testcase_16 AC 39 ms
52,264 KB
testcase_17 AC 40 ms
54,760 KB
testcase_18 AC 40 ms
53,420 KB
testcase_19 AC 40 ms
53,468 KB
testcase_20 AC 39 ms
53,356 KB
testcase_21 AC 39 ms
52,712 KB
testcase_22 AC 39 ms
52,748 KB
testcase_23 AC 40 ms
52,980 KB
testcase_24 AC 40 ms
53,752 KB
testcase_25 AC 40 ms
52,320 KB
testcase_26 AC 39 ms
53,000 KB
testcase_27 AC 39 ms
53,516 KB
testcase_28 AC 39 ms
54,212 KB
testcase_29 AC 39 ms
53,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#素因数分解
def Prime_Factorization(n):
    R=[]
    N=n

    for k in range(2,int(-(-n**0.5//1))+1):
        if N%k==0:
            C=0
            while N%k==0:
                C+=1
                N//=k
            R.append([k,C])

    if N!=1:
        R.append([N,1])
        
    if not R:
        R.append([N,1])

    return R
    
#素数判定
def Is_Prime(N):
    return (N>=2)  and (len(Prime_Factorization(N))==1)

A=int(input())
U=[]

u=2
while u+1<=10**9:
    if Is_Prime(u+1):
        U.append(u+1)
    u*=u

V=[]
L=len(U)
for i in range(2**L):
    p=1
    for j in range(L):
        if i%2:
            p*=U[j]
        i=i>>1
    if p<=A:
        V.append(p)

T=0
for p in V:
    while p<=A:
        T+=1
        p*=2

print(T-2)
0