結果

問題 No.237 作図可能性
ユーザー flippergoflippergo
提出日時 2024-12-29 12:05:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 62,796 KB
最終ジャッジ日時 2024-12-29 12:06:03
合計ジャッジ時間 2,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,456 KB
testcase_01 AC 48 ms
62,420 KB
testcase_02 AC 49 ms
62,544 KB
testcase_03 AC 49 ms
62,628 KB
testcase_04 AC 50 ms
62,072 KB
testcase_05 AC 51 ms
62,280 KB
testcase_06 AC 50 ms
60,968 KB
testcase_07 AC 49 ms
61,684 KB
testcase_08 AC 50 ms
61,340 KB
testcase_09 AC 48 ms
61,312 KB
testcase_10 AC 51 ms
62,224 KB
testcase_11 AC 48 ms
61,604 KB
testcase_12 AC 52 ms
60,848 KB
testcase_13 AC 48 ms
61,308 KB
testcase_14 AC 48 ms
61,380 KB
testcase_15 AC 51 ms
62,116 KB
testcase_16 AC 51 ms
61,904 KB
testcase_17 AC 50 ms
61,260 KB
testcase_18 AC 49 ms
61,132 KB
testcase_19 AC 48 ms
61,336 KB
testcase_20 AC 50 ms
60,900 KB
testcase_21 AC 49 ms
61,500 KB
testcase_22 AC 46 ms
61,524 KB
testcase_23 AC 47 ms
62,004 KB
testcase_24 AC 49 ms
61,616 KB
testcase_25 AC 47 ms
62,024 KB
testcase_26 AC 48 ms
62,184 KB
testcase_27 AC 49 ms
62,796 KB
testcase_28 AC 47 ms
62,152 KB
testcase_29 AC 47 ms
61,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = []
for n in range(5+1):
    a = pow(2,pow(2,n))+1
    flag = True
    for i in range(2,a+1):
        if i*i>a:break
        if a%i==0:
            flag = False
    if flag:
        A.append(a)
ans = 0
for m in range(31):
    x = pow(2,m)
    for i in range(1<<len(A)):
        cnt = 1
        for k in range(len(A)):
            if (i>>k)&1:
                cnt *= A[k]
        if x*cnt<=N:
            ans += 1
print(ans-2)
0