結果

問題 No.1747 Many Formulae 2
ユーザー tentententen
提出日時 2024-07-29 17:34:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,832 bytes
コンパイル時間 3,770 ms
コンパイル使用メモリ 78,368 KB
実行使用メモリ 50,420 KB
最終ジャッジ日時 2024-07-29 17:34:33
合計ジャッジ時間 5,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,280 KB
testcase_01 AC 54 ms
50,280 KB
testcase_02 AC 55 ms
49,988 KB
testcase_03 AC 54 ms
50,348 KB
testcase_04 AC 55 ms
50,392 KB
testcase_05 AC 55 ms
50,416 KB
testcase_06 AC 54 ms
50,288 KB
testcase_07 AC 54 ms
50,388 KB
testcase_08 AC 55 ms
50,296 KB
testcase_09 AC 55 ms
50,276 KB
testcase_10 AC 55 ms
50,000 KB
testcase_11 AC 55 ms
50,036 KB
testcase_12 AC 54 ms
50,240 KB
testcase_13 AC 56 ms
50,420 KB
testcase_14 AC 54 ms
50,364 KB
testcase_15 AC 55 ms
50,044 KB
testcase_16 AC 56 ms
49,904 KB
testcase_17 AC 55 ms
50,140 KB
testcase_18 AC 54 ms
50,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static int ans = 0;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] inputs = sc.next().toCharArray();
        check(0, inputs, 0, 0);
        System.out.println(ans);
    }
    
    static void check(int idx, char[] inputs, long current, long value) {
        if (idx == inputs.length) {
            if (isPrime(current + value)) {
                ans++;
            }
            return;
        }
        int v = inputs[idx] - '0';
        if (idx > 0) {
            check(idx + 1, inputs, v, current + value);
        }
        check(idx + 1, inputs, current * 10 + v, value);
    }
    
    static boolean isPrime(long x) {
        for (int i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                return false;
            }
        }
        return x > 1;
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0