結果

問題 No.237 作図可能性
ユーザー ぴろずぴろず
提出日時 2015-07-05 22:32:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 75,724 KB
実行使用メモリ 54,704 KB
最終ジャッジ日時 2024-07-07 23:11:59
合計ジャッジ時間 5,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 93 ms
40,024 KB
testcase_02 AC 105 ms
41,136 KB
testcase_03 AC 104 ms
40,932 KB
testcase_04 AC 102 ms
40,968 KB
testcase_05 AC 107 ms
44,088 KB
testcase_06 AC 107 ms
41,192 KB
testcase_07 AC 105 ms
41,344 KB
testcase_08 AC 107 ms
41,076 KB
testcase_09 AC 97 ms
39,824 KB
testcase_10 AC 105 ms
41,204 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 100 ms
41,176 KB
testcase_14 AC 106 ms
40,964 KB
testcase_15 WA -
testcase_16 AC 105 ms
40,924 KB
testcase_17 AC 102 ms
44,444 KB
testcase_18 AC 103 ms
41,132 KB
testcase_19 AC 97 ms
42,856 KB
testcase_20 WA -
testcase_21 AC 106 ms
40,896 KB
testcase_22 AC 105 ms
40,996 KB
testcase_23 AC 107 ms
41,128 KB
testcase_24 WA -
testcase_25 AC 105 ms
40,172 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 102 ms
41,076 KB
testcase_29 AC 107 ms
40,936 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