結果

問題 No.1747 Many Formulae 2
ユーザー monakamonaka
提出日時 2021-12-30 06:16:38
言語 TypeScript
(5.7.2)
結果
WA  
実行時間 -
コード長 516 bytes
コンパイル時間 8,164 ms
コンパイル使用メモリ 229,064 KB
実行使用メモリ 43,264 KB
最終ジャッジ日時 2024-12-31 16:42:02
合計ジャッジ時間 10,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 64 ms
39,296 KB
testcase_02 AC 65 ms
39,296 KB
testcase_03 AC 65 ms
41,456 KB
testcase_04 AC 65 ms
39,424 KB
testcase_05 AC 64 ms
39,424 KB
testcase_06 AC 63 ms
39,296 KB
testcase_07 WA -
testcase_08 AC 64 ms
39,424 KB
testcase_09 AC 63 ms
39,424 KB
testcase_10 AC 63 ms
39,552 KB
testcase_11 AC 64 ms
39,296 KB
testcase_12 AC 76 ms
39,424 KB
testcase_13 AC 63 ms
39,296 KB
testcase_14 AC 64 ms
39,296 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 63 ms
39,296 KB
testcase_18 AC 62 ms
39,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let count = 0;

function walk(str, sum) {
  for(let i=1; i<str.length; i++) {
    const l = str.substr(0, i);
    const r = str.substr(i);
    walk(r, Number(sum)+Number(l));
  }
  if(isPrime(Number(sum)+Number(str))) {
    count++;
  }
}

function isPrime(num) {
  if(num === 1) return false;
  for(let i=2; i*i<num; i++) {
    if(num % i === 0) return false;
  } 
  return true;
}

function main(str) {
  walk(str, 0);
  console.log(count);
}

main(require("fs").readFileSync("/dev/stdin", "utf8").split("\n")[0]);
0