結果

問題 No.237 作図可能性
ユーザー 37zigen37zigen
提出日時 2016-08-25 16:17:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 3,618 ms
コンパイル使用メモリ 79,120 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-11-08 02:21:56
合計ジャッジ時間 8,501 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,200 KB
testcase_01 AC 123 ms
40,184 KB
testcase_02 AC 120 ms
40,220 KB
testcase_03 AC 118 ms
40,168 KB
testcase_04 AC 118 ms
39,992 KB
testcase_05 AC 128 ms
41,280 KB
testcase_06 AC 132 ms
41,280 KB
testcase_07 AC 116 ms
40,188 KB
testcase_08 AC 131 ms
41,288 KB
testcase_09 AC 130 ms
41,320 KB
testcase_10 AC 130 ms
41,152 KB
testcase_11 AC 119 ms
40,248 KB
testcase_12 AC 129 ms
41,204 KB
testcase_13 AC 131 ms
41,208 KB
testcase_14 AC 131 ms
41,308 KB
testcase_15 AC 130 ms
41,440 KB
testcase_16 AC 123 ms
40,296 KB
testcase_17 AC 136 ms
41,516 KB
testcase_18 AC 122 ms
40,168 KB
testcase_19 AC 130 ms
41,276 KB
testcase_20 AC 132 ms
41,304 KB
testcase_21 AC 131 ms
41,412 KB
testcase_22 AC 119 ms
40,160 KB
testcase_23 AC 117 ms
39,972 KB
testcase_24 AC 122 ms
40,296 KB
testcase_25 AC 131 ms
41,196 KB
testcase_26 AC 131 ms
41,212 KB
testcase_27 AC 127 ms
41,148 KB
testcase_28 AC 130 ms
41,252 KB
testcase_29 AC 120 ms
40,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No200番台;

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

public class Q237 {
	public static void main(String[] args) {
		new Q237().solver();
	}

	void solver() {
		Scanner sc = new Scanner(System.in);
		long A = sc.nextLong();
		long[] F = { 3, 5, 17, 257, 65537 };
		// 正n角形が作図可能
		// ⇔2のべき乗とフェルマー素数の積でかける。
		ArrayList<Long> s = new ArrayList<>();
		for (int i = 1; i < (1 << 5); i++) {
			long tmp = 1;
			for (int shift = 0; shift <= 4; shift++) {
				if (((i >> shift) & 1) == 1) {
					tmp *= F[shift];
				}
				
			}
			if (tmp != 1) {
				s.add(tmp);
			}
		}
		long ans = 0;
		for (int i = 0; i < s.size(); i++) {
			long d = s.get(i);
//			System.out.println(d);
			if (d <= A) {
				ans += (long) (Math.log((double) A / (double) d) / Math.log(2)) + 1;
			}
		}
		ans += (long) ((Math.log(A) / Math.log(2))) - 1;
		System.out.println(ans);
	}

	void tr(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}
}
0