結果

問題 No.237 作図可能性
ユーザー GrenacheGrenache
提出日時 2015-07-05 23:50:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 3,519 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-07-08 01:03:52
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,356 KB
testcase_01 AC 111 ms
40,792 KB
testcase_02 AC 107 ms
40,796 KB
testcase_03 AC 107 ms
40,824 KB
testcase_04 AC 99 ms
40,020 KB
testcase_05 AC 105 ms
40,960 KB
testcase_06 AC 108 ms
40,624 KB
testcase_07 AC 110 ms
41,132 KB
testcase_08 AC 99 ms
40,156 KB
testcase_09 AC 106 ms
41,000 KB
testcase_10 AC 109 ms
40,608 KB
testcase_11 AC 100 ms
39,924 KB
testcase_12 AC 101 ms
39,780 KB
testcase_13 AC 100 ms
40,104 KB
testcase_14 AC 95 ms
39,332 KB
testcase_15 AC 111 ms
41,288 KB
testcase_16 AC 102 ms
39,764 KB
testcase_17 AC 110 ms
40,916 KB
testcase_18 AC 99 ms
39,764 KB
testcase_19 AC 113 ms
40,852 KB
testcase_20 AC 100 ms
39,764 KB
testcase_21 AC 99 ms
39,992 KB
testcase_22 AC 107 ms
40,772 KB
testcase_23 AC 108 ms
40,720 KB
testcase_24 AC 108 ms
41,072 KB
testcase_25 AC 108 ms
40,844 KB
testcase_26 AC 118 ms
41,228 KB
testcase_27 AC 100 ms
39,752 KB
testcase_28 AC 109 ms
40,640 KB
testcase_29 AC 98 ms
40,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder237 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int a = sc.nextInt();

        long[] num = {2, 4, 16, 256, 65536, 3, 5, 17, 257, 65537};
        
        int ret = 0;
        for (int i = 1; i < 1 << num.length; i++) {
        	long tmp = 1;
        	for (int j = 0; j < num.length; j++) {
        		if ((i & (0x1 << j)) != 0) {
        			tmp *= num[j];
        		}
        	}
        	if (tmp <= a) {
        		ret++;
        	}
        }
        
        System.out.println(ret - 1);
        
        sc.close();
    }
}
0