結果

問題 No.7 プライムナンバーゲーム
ユーザー monakamonaka
提出日時 2022-01-04 14:14:09
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 762 bytes
コンパイル時間 8,928 ms
コンパイル使用メモリ 228,792 KB
実行使用メモリ 45,128 KB
最終ジャッジ日時 2024-12-31 16:44:00
合計ジャッジ時間 10,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
39,424 KB
testcase_01 AC 63 ms
39,296 KB
testcase_02 AC 171 ms
43,544 KB
testcase_03 AC 75 ms
45,128 KB
testcase_04 AC 73 ms
43,192 KB
testcase_05 AC 72 ms
43,192 KB
testcase_06 AC 95 ms
43,520 KB
testcase_07 AC 107 ms
43,128 KB
testcase_08 AC 78 ms
43,224 KB
testcase_09 AC 111 ms
43,296 KB
testcase_10 AC 64 ms
39,552 KB
testcase_11 AC 87 ms
43,120 KB
testcase_12 AC 139 ms
43,328 KB
testcase_13 AC 146 ms
43,332 KB
testcase_14 AC 172 ms
43,540 KB
testcase_15 AC 167 ms
43,660 KB
testcase_16 AC 158 ms
43,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input) {
  const n = parseInt(input[0]);
  const dp = [];
  const prime = makePrimeList(n);
  dp[1] = dp[2] = dp[3] = false;
  for(let m=4; m<=n; m++) {
    for(let i=m-1; i>=2; i--) {
      if(prime[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 makePrimeList(n) {
  const list = new Array(n).fill(true);
  list[0] = list[1] = false;
  for(let i=2; i*i<=n; i++) {
    if(!list[i]) continue;
    for(let j=i*2; j<=n; j+=i) {
      list[j] = false;
    }
  }
  return list;
}

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