結果

問題 No.237 作図可能性
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-03 17:50:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 954 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 77,904 KB
実行使用メモリ 53,984 KB
最終ジャッジ日時 2024-11-27 18:03:13
合計ジャッジ時間 7,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,868 KB
testcase_01 AC 106 ms
52,836 KB
testcase_02 AC 118 ms
53,824 KB
testcase_03 AC 116 ms
53,952 KB
testcase_04 AC 116 ms
53,652 KB
testcase_05 AC 105 ms
52,980 KB
testcase_06 AC 110 ms
53,400 KB
testcase_07 AC 105 ms
52,744 KB
testcase_08 AC 116 ms
53,984 KB
testcase_09 AC 117 ms
53,752 KB
testcase_10 AC 107 ms
53,300 KB
testcase_11 AC 101 ms
52,984 KB
testcase_12 AC 118 ms
53,912 KB
testcase_13 AC 112 ms
53,400 KB
testcase_14 AC 105 ms
53,000 KB
testcase_15 AC 120 ms
53,852 KB
testcase_16 AC 119 ms
53,972 KB
testcase_17 AC 124 ms
53,796 KB
testcase_18 AC 123 ms
41,240 KB
testcase_19 AC 125 ms
41,156 KB
testcase_20 AC 122 ms
41,044 KB
testcase_21 AC 126 ms
41,044 KB
testcase_22 AC 125 ms
41,084 KB
testcase_23 AC 125 ms
41,200 KB
testcase_24 AC 108 ms
39,972 KB
testcase_25 AC 115 ms
40,320 KB
testcase_26 AC 115 ms
41,552 KB
testcase_27 AC 117 ms
41,176 KB
testcase_28 AC 115 ms
41,600 KB
testcase_29 AC 119 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        long [] F = {3L,5L,17L,257L,65537L};
        long [] m = new long [30];
        for(int i=0; i<30; i++){
            m[i]=(long)Math.pow(2,i);
        }
        ArrayList<Long> Fpr = new ArrayList<Long>();
        Fpr.add(1L);
        for(int i=0; i<5; i++){
            int L=Fpr.size();
            for(int j=0; j<L; j++){
                Fpr.add(Fpr.get(j)*F[i]);
            }
        }
        ArrayList<Long> array = new ArrayList<Long>();
        for(int i=0; i<30; i++){
            for(int j=0; j<Fpr.size(); j++){
                array.add(Fpr.get(j)*m[i]);
            }
        }
        int c=0;
        for(int j=0; j<array.size(); j++){
            if(3<=array.get(j)&&array.get(j)<=N){
                c++;
            }
        }
        System.out.println(c);
    }
}
0