結果

問題 No.237 作図可能性
ユーザー tentententen
提出日時 2020-11-18 08:40:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-07-23 08:51:21
合計ジャッジ時間 7,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,916 KB
testcase_01 AC 126 ms
53,752 KB
testcase_02 AC 112 ms
52,980 KB
testcase_03 AC 114 ms
53,064 KB
testcase_04 AC 113 ms
53,084 KB
testcase_05 AC 114 ms
52,860 KB
testcase_06 AC 133 ms
54,104 KB
testcase_07 AC 130 ms
53,876 KB
testcase_08 AC 118 ms
52,820 KB
testcase_09 AC 127 ms
54,044 KB
testcase_10 AC 127 ms
53,896 KB
testcase_11 AC 125 ms
54,348 KB
testcase_12 AC 127 ms
54,056 KB
testcase_13 AC 114 ms
53,064 KB
testcase_14 AC 129 ms
53,896 KB
testcase_15 AC 128 ms
53,948 KB
testcase_16 AC 131 ms
54,100 KB
testcase_17 AC 124 ms
53,972 KB
testcase_18 AC 126 ms
53,964 KB
testcase_19 AC 133 ms
54,052 KB
testcase_20 AC 113 ms
52,608 KB
testcase_21 AC 127 ms
53,972 KB
testcase_22 AC 127 ms
53,820 KB
testcase_23 AC 125 ms
53,796 KB
testcase_24 AC 129 ms
54,024 KB
testcase_25 AC 129 ms
54,248 KB
testcase_26 AC 127 ms
53,924 KB
testcase_27 AC 129 ms
54,152 KB
testcase_28 AC 131 ms
54,128 KB
testcase_29 AC 113 ms
53,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long[] felm = new long[]{3, 5, 17, 257, 65537};
        long[] probable = new long[1 << 5];
        for (int i = 0; i < (1 << 5); i++) {
            int x = i;
            probable[i] = 1;
            for (int j = 0; j < 5; j++) {
                if (x % 2 == 1) {
                    probable[i] *= felm[j];
                }
                x /= 2;
            }
        }
        int count = 0;
        for (long x : probable) {
            long y = x;
            while (y <= n) {
                count++;
                y *= 2;
            }
        }
        System.out.println(count - 2);
    }
}
0