結果

問題 No.1765 While Shining
ユーザー monakamonaka
提出日時 2022-01-02 03:21:02
言語 TypeScript
(5.7.2)
結果
TLE  
実行時間 -
コード長 492 bytes
コンパイル時間 8,727 ms
コンパイル使用メモリ 228,672 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-12-31 16:42:22
合計ジャッジ時間 15,104 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
46,112 KB
testcase_01 AC 67 ms
39,552 KB
testcase_02 AC 66 ms
39,296 KB
testcase_03 AC 66 ms
39,168 KB
testcase_04 AC 67 ms
39,552 KB
testcase_05 AC 68 ms
39,168 KB
testcase_06 AC 69 ms
39,296 KB
testcase_07 AC 65 ms
39,424 KB
testcase_08 AC 67 ms
39,296 KB
testcase_09 AC 90 ms
45,688 KB
testcase_10 AC 98 ms
47,084 KB
testcase_11 AC 94 ms
46,532 KB
testcase_12 AC 96 ms
46,560 KB
testcase_13 AC 96 ms
48,440 KB
testcase_14 AC 101 ms
47,064 KB
testcase_15 AC 101 ms
47,116 KB
testcase_16 AC 100 ms
46,992 KB
testcase_17 AC 102 ms
46,860 KB
testcase_18 AC 103 ms
46,860 KB
testcase_19 AC 101 ms
46,984 KB
testcase_20 AC 102 ms
46,856 KB
testcase_21 AC 101 ms
46,860 KB
testcase_22 AC 103 ms
46,984 KB
testcase_23 AC 101 ms
46,988 KB
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input) {
  const n = Number(input[0]);
  const bit = input[1].split(" ");
  let ans = 0;
  for(let i=0; i<n; i++) {
    ans += move(bit, i);   
  }
  console.log(ans);
}

function move(bit, i) {
  let j = i;
  while(true) {
    let nowBit = bit[j];
    if(((j-i) % 2) === 1) {
      nowBit = nowBit === "1" ? "0" : "1";
    }
    if(nowBit === "0" || j === (bit.length-1)) break;
    j++;
  }
  return j-i;
}

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