結果

問題 No.1747 Many Formulae 2
ユーザー monakamonaka
提出日時 2021-12-29 14:41:54
言語 TypeScript
(5.7.2)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 8,157 ms
コンパイル使用メモリ 228,240 KB
実行使用メモリ 43,264 KB
最終ジャッジ日時 2024-12-31 16:41:51
合計ジャッジ時間 11,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
39,296 KB
testcase_01 AC 66 ms
42,880 KB
testcase_02 AC 64 ms
39,296 KB
testcase_03 AC 64 ms
39,552 KB
testcase_04 AC 69 ms
43,264 KB
testcase_05 AC 64 ms
39,424 KB
testcase_06 AC 64 ms
39,424 KB
testcase_07 AC 88 ms
43,008 KB
testcase_08 AC 64 ms
39,424 KB
testcase_09 AC 64 ms
39,296 KB
testcase_10 AC 63 ms
39,552 KB
testcase_11 AC 63 ms
39,424 KB
testcase_12 AC 67 ms
43,136 KB
testcase_13 AC 63 ms
39,680 KB
testcase_14 AC 63 ms
39,296 KB
testcase_15 AC 862 ms
42,752 KB
testcase_16 AC 855 ms
43,008 KB
testcase_17 AC 64 ms
39,552 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

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) {
  for(let i=2; 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