結果

問題 No.237 作図可能性
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-20 18:00:32
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 73,620 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-09-17 06:41:20
合計ジャッジ時間 6,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,920 KB
testcase_01 AC 115 ms
41,024 KB
testcase_02 AC 108 ms
40,028 KB
testcase_03 AC 104 ms
40,788 KB
testcase_04 AC 116 ms
40,892 KB
testcase_05 AC 124 ms
41,192 KB
testcase_06 AC 112 ms
41,360 KB
testcase_07 AC 123 ms
41,068 KB
testcase_08 AC 123 ms
40,968 KB
testcase_09 AC 123 ms
40,876 KB
testcase_10 AC 118 ms
41,196 KB
testcase_11 AC 118 ms
40,796 KB
testcase_12 AC 110 ms
41,340 KB
testcase_13 AC 115 ms
40,756 KB
testcase_14 AC 112 ms
41,132 KB
testcase_15 AC 114 ms
41,344 KB
testcase_16 AC 117 ms
40,968 KB
testcase_17 AC 113 ms
41,136 KB
testcase_18 AC 112 ms
41,136 KB
testcase_19 AC 121 ms
41,356 KB
testcase_20 AC 124 ms
40,788 KB
testcase_21 AC 111 ms
41,068 KB
testcase_22 AC 116 ms
41,696 KB
testcase_23 AC 102 ms
40,784 KB
testcase_24 AC 118 ms
40,960 KB
testcase_25 AC 103 ms
41,188 KB
testcase_26 AC 103 ms
41,396 KB
testcase_27 AC 115 ms
40,664 KB
testcase_28 AC 105 ms
41,080 KB
testcase_29 AC 122 ms
40,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        long a = stdin.nextInt();
        
        int count = 0;
        long[] primes = new long[] {3, 5, 17, 257, 65537}; // フェルマー素数
        for (long bit = 0, len = primes.length; bit < (1 << len); bit++) {
            long x = 1;
            for (int i = 0; i < len; i++) {
                if ((bit & (1 << i)) != 0) {
                    x *= primes[i];
                }
            }
            while (x <= a) {
                if (x >= 3) {
                    count++;
                }
                x *= 2;
            }
        }
        
        System.out.println(count);
    }
}
0