結果

問題 No.7 プライムナンバーゲーム
ユーザー monakamonaka
提出日時 2022-01-04 13:39:07
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 845 ms / 5,000 ms
コード長 628 bytes
コンパイル時間 8,452 ms
コンパイル使用メモリ 229,540 KB
実行使用メモリ 45,548 KB
最終ジャッジ日時 2024-12-31 16:43:19
合計ジャッジ時間 15,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
39,296 KB
testcase_01 AC 64 ms
39,296 KB
testcase_02 AC 845 ms
43,392 KB
testcase_03 AC 104 ms
43,136 KB
testcase_04 AC 77 ms
43,136 KB
testcase_05 AC 77 ms
43,392 KB
testcase_06 AC 290 ms
43,392 KB
testcase_07 AC 204 ms
43,264 KB
testcase_08 AC 119 ms
43,264 KB
testcase_09 AC 446 ms
43,392 KB
testcase_10 AC 65 ms
39,296 KB
testcase_11 AC 206 ms
45,548 KB
testcase_12 AC 658 ms
43,648 KB
testcase_13 AC 694 ms
43,520 KB
testcase_14 AC 841 ms
43,648 KB
testcase_15 AC 808 ms
43,520 KB
testcase_16 AC 760 ms
43,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input) {
  const n = parseInt(input[0]);
  const dp = [];
  dp[1] = dp[2] = dp[3] = false;
  for(let m=4; m<=n; m++) {
    for(let i=m-1; i>=2; i--) {
      if(isPrime(i)) {
        if((m-i) <= 1) {
          dp[m] = false;
        } else if(!dp[m - i]) {
          dp[m] = true;
          break;
        } else {
          dp[m] = false;
        }
      }
    }
  }
  console.log(dp[n] ? "Win" : "Lose");
}

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

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