結果

問題 No.237 作図可能性
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-10 00:18:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 62,408 KB
最終ジャッジ日時 2024-09-14 01:43:21
合計ジャッジ時間 2,917 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,076 KB
testcase_01 AC 44 ms
59,952 KB
testcase_02 AC 43 ms
60,924 KB
testcase_03 AC 46 ms
61,248 KB
testcase_04 AC 43 ms
59,556 KB
testcase_05 AC 45 ms
61,408 KB
testcase_06 AC 46 ms
61,504 KB
testcase_07 AC 45 ms
60,240 KB
testcase_08 AC 44 ms
60,784 KB
testcase_09 AC 45 ms
60,148 KB
testcase_10 AC 43 ms
60,656 KB
testcase_11 AC 44 ms
60,252 KB
testcase_12 AC 43 ms
60,052 KB
testcase_13 AC 44 ms
60,292 KB
testcase_14 AC 44 ms
61,360 KB
testcase_15 AC 43 ms
60,008 KB
testcase_16 AC 44 ms
59,992 KB
testcase_17 AC 44 ms
60,216 KB
testcase_18 AC 45 ms
61,464 KB
testcase_19 AC 45 ms
60,064 KB
testcase_20 AC 47 ms
62,408 KB
testcase_21 AC 45 ms
60,680 KB
testcase_22 AC 45 ms
61,876 KB
testcase_23 AC 46 ms
60,756 KB
testcase_24 AC 46 ms
60,592 KB
testcase_25 AC 45 ms
60,320 KB
testcase_26 AC 46 ms
60,452 KB
testcase_27 AC 44 ms
60,984 KB
testcase_28 AC 44 ms
59,704 KB
testcase_29 AC 44 ms
60,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
P = [1]
while P[-1]*2 <= 10**9:
    P.append(P[-1]*2)

F = [3, 5, 17, 257, 65537]
ans = 0
for p in P:
    for i in range(1<<5):
        x = p
        for j in range(5):
            if (i>>j)&1:
                x *= F[j]
        if 3 <= x <= a:
            ans += 1
print(ans)
0