結果

問題 No.1747 Many Formulae 2
ユーザー tentententen
提出日時 2024-07-29 17:33:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,831 bytes
コンパイル時間 2,612 ms
コンパイル使用メモリ 78,852 KB
実行使用メモリ 50,404 KB
最終ジャッジ日時 2024-07-29 17:33:29
合計ジャッジ時間 5,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
49,916 KB
testcase_01 AC 55 ms
49,884 KB
testcase_02 AC 54 ms
50,312 KB
testcase_03 AC 54 ms
50,248 KB
testcase_04 AC 54 ms
50,084 KB
testcase_05 AC 55 ms
50,344 KB
testcase_06 AC 54 ms
50,404 KB
testcase_07 AC 61 ms
50,200 KB
testcase_08 AC 54 ms
50,368 KB
testcase_09 AC 57 ms
50,308 KB
testcase_10 AC 55 ms
50,252 KB
testcase_11 AC 56 ms
50,340 KB
testcase_12 AC 56 ms
50,088 KB
testcase_13 AC 57 ms
50,292 KB
testcase_14 AC 55 ms
50,308 KB
testcase_15 AC 56 ms
49,924 KB
testcase_16 AC 57 ms
50,328 KB
testcase_17 AC 55 ms
50,352 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

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 true;
    }
}
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