結果

問題 No.843 Triple Primes
ユーザー tentententen
提出日時 2020-08-31 22:57:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 3,199 ms
コンパイル使用メモリ 86,580 KB
実行使用メモリ 44,556 KB
最終ジャッジ日時 2024-11-17 02:45:05
合計ジャッジ時間 13,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,180 KB
testcase_01 AC 246 ms
44,416 KB
testcase_02 AC 149 ms
41,308 KB
testcase_03 AC 156 ms
41,268 KB
testcase_04 AC 159 ms
41,496 KB
testcase_05 AC 132 ms
41,640 KB
testcase_06 AC 146 ms
40,856 KB
testcase_07 AC 229 ms
44,172 KB
testcase_08 AC 231 ms
44,336 KB
testcase_09 AC 236 ms
44,428 KB
testcase_10 AC 227 ms
44,556 KB
testcase_11 AC 239 ms
44,168 KB
testcase_12 AC 251 ms
44,432 KB
testcase_13 AC 228 ms
44,192 KB
testcase_14 AC 234 ms
44,400 KB
testcase_15 AC 240 ms
43,868 KB
testcase_16 AC 228 ms
44,264 KB
testcase_17 AC 120 ms
41,172 KB
testcase_18 AC 105 ms
39,912 KB
testcase_19 AC 108 ms
39,956 KB
testcase_20 AC 196 ms
42,772 KB
testcase_21 AC 180 ms
41,868 KB
testcase_22 AC 218 ms
43,956 KB
testcase_23 AC 218 ms
43,652 KB
testcase_24 AC 196 ms
43,108 KB
testcase_25 AC 198 ms
42,552 KB
testcase_26 AC 243 ms
44,448 KB
testcase_27 AC 146 ms
42,008 KB
testcase_28 AC 241 ms
44,312 KB
testcase_29 AC 211 ms
42,584 KB
testcase_30 AC 234 ms
44,460 KB
testcase_31 AC 179 ms
41,872 KB
testcase_32 AC 184 ms
41,700 KB
testcase_33 AC 218 ms
43,004 KB
testcase_34 AC 233 ms
43,488 KB
testcase_35 AC 265 ms
44,196 KB
testcase_36 AC 214 ms
42,412 KB
testcase_37 AC 231 ms
43,920 KB
testcase_38 AC 214 ms
43,936 KB
testcase_39 AC 237 ms
44,400 KB
testcase_40 AC 121 ms
41,344 KB
testcase_41 AC 115 ms
40,852 KB
testcase_42 AC 220 ms
44,488 KB
testcase_43 AC 236 ms
44,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	if (n == 1) {
    	    System.out.println(0);
    	    return;
    	}
    	TreeSet<Integer> primes = new TreeSet<>();
    	for (int i = 2; i <= n; i++) {
    	    if (isPrime(primes, i)) {
    	        primes.add(i);
    	    }
    	}
    	long total = -1;
    	for (int x : primes) {
    	    if (primes.contains(getNum(x + 2))) {
    	        total += 2;
    	    }
    	}
    	System.out.println(total);
    }
    
    static int getNum(int x) {
        int ans = (int)Math.sqrt(x);
        if (ans * ans == x) {
            return ans;
        } else {
            return 0;
        }
    }
    
    static boolean isPrime(TreeSet<Integer> primes, int x) {
        for (int y : primes) {
            if (y * y > x) {
                break;
            }
            if (x % y == 0) {
                return false;
            }
        }
        return true;
    }
    
}
0