結果

問題 No.237 作図可能性
ユーザー ぴろずぴろず
提出日時 2015-07-05 22:33:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 1,930 ms
コンパイル使用メモリ 75,828 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-07-07 23:13:34
合計ジャッジ時間 6,140 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,112 KB
testcase_01 AC 108 ms
53,884 KB
testcase_02 AC 99 ms
53,132 KB
testcase_03 AC 112 ms
54,100 KB
testcase_04 AC 114 ms
53,936 KB
testcase_05 AC 108 ms
53,960 KB
testcase_06 AC 111 ms
54,160 KB
testcase_07 AC 109 ms
53,868 KB
testcase_08 AC 112 ms
53,904 KB
testcase_09 AC 113 ms
53,928 KB
testcase_10 AC 101 ms
52,916 KB
testcase_11 AC 109 ms
54,036 KB
testcase_12 AC 100 ms
52,544 KB
testcase_13 AC 107 ms
53,892 KB
testcase_14 AC 111 ms
54,068 KB
testcase_15 AC 116 ms
53,904 KB
testcase_16 AC 118 ms
53,956 KB
testcase_17 AC 98 ms
52,324 KB
testcase_18 AC 102 ms
52,656 KB
testcase_19 AC 104 ms
52,912 KB
testcase_20 AC 116 ms
54,120 KB
testcase_21 AC 103 ms
53,076 KB
testcase_22 AC 105 ms
53,060 KB
testcase_23 AC 116 ms
54,564 KB
testcase_24 AC 106 ms
52,944 KB
testcase_25 AC 118 ms
53,832 KB
testcase_26 AC 104 ms
52,628 KB
testcase_27 AC 119 ms
52,980 KB
testcase_28 AC 114 ms
53,948 KB
testcase_29 AC 106 ms
52,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no237;

import java.util.HashSet;
import java.util.Scanner;

public class Main {
	public static long[] felmatPrime = {3,5,17,257,65537};
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		HashSet<Long> hs = new HashSet<>();
		for(int i=0;i<32;i++) {
			long x = 1;
			for(int j=0;j<5;j++) {
				if ((i >> j & 1) == 1) {
					x *= felmatPrime[j];
				}
			}
			while(x <= a) {
				hs.add(x);
				x <<= 1;
			}
		}
		System.out.println(hs.size() - 2);
	}

}
0