結果

問題 No.237 作図可能性
ユーザー suiginginsuigingin
提出日時 2015-07-06 01:55:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 2,906 ms
コンパイル使用メモリ 75,164 KB
実行使用メモリ 41,156 KB
最終ジャッジ日時 2024-07-08 01:16:34
合計ジャッジ時間 7,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,952 KB
testcase_01 AC 110 ms
40,300 KB
testcase_02 AC 120 ms
40,744 KB
testcase_03 AC 119 ms
41,032 KB
testcase_04 AC 109 ms
40,136 KB
testcase_05 AC 108 ms
40,920 KB
testcase_06 AC 118 ms
41,016 KB
testcase_07 AC 112 ms
40,280 KB
testcase_08 AC 112 ms
40,552 KB
testcase_09 AC 130 ms
40,796 KB
testcase_10 AC 122 ms
41,080 KB
testcase_11 AC 118 ms
41,020 KB
testcase_12 AC 107 ms
41,156 KB
testcase_13 AC 119 ms
40,744 KB
testcase_14 AC 110 ms
39,808 KB
testcase_15 AC 107 ms
40,832 KB
testcase_16 AC 108 ms
40,404 KB
testcase_17 AC 113 ms
41,000 KB
testcase_18 AC 109 ms
40,748 KB
testcase_19 AC 110 ms
40,856 KB
testcase_20 AC 111 ms
39,860 KB
testcase_21 AC 106 ms
40,520 KB
testcase_22 AC 110 ms
40,752 KB
testcase_23 AC 117 ms
41,132 KB
testcase_24 AC 121 ms
40,876 KB
testcase_25 AC 110 ms
40,752 KB
testcase_26 AC 113 ms
40,524 KB
testcase_27 AC 119 ms
40,816 KB
testcase_28 AC 109 ms
41,064 KB
testcase_29 AC 104 ms
40,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeSet;

public class No_237 {
	Scanner sc = new Scanner(System.in);
	int M = 1000000000;

	void run() {
		int n = sc.nextInt();
		TreeSet<Long> set = new TreeSet<>();
		int[] F = { 3, 5, 17, 257, 65537 };
		for (int mask = 0; mask < 1 << F.length; mask++) {
			long base = 1;
			for (int j = 0; j < F.length; j++) {
				if (((mask >> j) & 1) == 1) {
					base *= F[j];
				}
			}
			while (base <= M) {
				set.add(base);
				base *= 2;
			}
		}
	
		set.remove(1L);
		set.remove(2L);
		
		int cnt = 0;
		for (long ele : set) {
			if(ele <= n) cnt++;
			else break;
		}
		System.out.println(cnt);
	}

	public static void main(String[] args) {
		new No_237().run();
	}
}
0