結果

問題 No.237 作図可能性
ユーザー YamaKasaYamaKasa
提出日時 2018-09-05 22:35:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 2,990 ms
コンパイル使用メモリ 77,088 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-11-15 17:23:07
合計ジャッジ時間 7,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,164 KB
testcase_01 AC 125 ms
41,224 KB
testcase_02 AC 128 ms
41,472 KB
testcase_03 AC 126 ms
41,632 KB
testcase_04 AC 127 ms
41,352 KB
testcase_05 AC 127 ms
41,584 KB
testcase_06 AC 115 ms
40,084 KB
testcase_07 AC 113 ms
40,432 KB
testcase_08 AC 127 ms
41,368 KB
testcase_09 AC 126 ms
41,212 KB
testcase_10 AC 126 ms
41,252 KB
testcase_11 AC 127 ms
41,048 KB
testcase_12 AC 125 ms
41,528 KB
testcase_13 AC 126 ms
41,388 KB
testcase_14 AC 123 ms
40,844 KB
testcase_15 AC 125 ms
41,436 KB
testcase_16 AC 106 ms
39,960 KB
testcase_17 AC 128 ms
41,252 KB
testcase_18 AC 126 ms
41,212 KB
testcase_19 AC 126 ms
41,432 KB
testcase_20 AC 128 ms
41,328 KB
testcase_21 AC 127 ms
41,480 KB
testcase_22 AC 125 ms
41,400 KB
testcase_23 AC 127 ms
41,576 KB
testcase_24 AC 112 ms
40,272 KB
testcase_25 AC 125 ms
41,660 KB
testcase_26 AC 125 ms
41,316 KB
testcase_27 AC 113 ms
40,032 KB
testcase_28 AC 113 ms
39,892 KB
testcase_29 AC 127 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	static long []b;
	static long[]F = {3, 5, 17, 257, 65537};
	static int cnt = 0;
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int A = scan.nextInt();
		scan.close();

		long []a = new long[30];
		for(int i = 0; i < 30; i++) {
			a[i] = (long)Math.pow(2, i);
		}
		b = new long[32];


		int[] bit = new int[5];
		rec(0, 5, bit);
		Arrays.sort(b);

		int ans = 0;
		for(int i = 0; i < 30; i++) {
			for(int j = 0; j < 32; j++) {
				long t = a[i] * b[j];
				if(3 <= t &&t <= A) {
					ans++;
				}
			}
		}
		System.out.println(ans);

	}
	static void rec(int k, int n, int[] S) {
        if(k == n) {
            long t = calc(S);
            b[cnt] = t;
        	cnt ++;
            return;
        }
        rec(k + 1, n, S);
        S[k] = 1;
        rec(k + 1,n, S);
        S[k] = 0;
    }
	static long calc(int[] S) {
		long t = 1;
		for(int i = 0; i < S.length; i++) {
			if(S[i] == 1) {
				t *= F[i];
			}
		}
		return t;
	}

}
0