結果

問題 No.1765 While Shining
ユーザー monakamonaka
提出日時 2022-01-02 04:08:26
言語 TypeScript
(5.7.2)
結果
TLE  
実行時間 -
コード長 450 bytes
コンパイル時間 8,702 ms
コンパイル使用メモリ 228,216 KB
実行使用メモリ 52,396 KB
最終ジャッジ日時 2024-12-31 16:42:37
合計ジャッジ時間 14,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
46,112 KB
testcase_01 AC 64 ms
39,296 KB
testcase_02 AC 63 ms
39,552 KB
testcase_03 AC 64 ms
39,168 KB
testcase_04 AC 63 ms
39,296 KB
testcase_05 AC 63 ms
39,168 KB
testcase_06 AC 64 ms
39,296 KB
testcase_07 AC 64 ms
39,296 KB
testcase_08 AC 64 ms
39,296 KB
testcase_09 AC 87 ms
45,692 KB
testcase_10 AC 94 ms
46,960 KB
testcase_11 AC 92 ms
46,788 KB
testcase_12 AC 96 ms
46,820 KB
testcase_13 AC 91 ms
46,524 KB
testcase_14 AC 98 ms
46,992 KB
testcase_15 AC 97 ms
46,992 KB
testcase_16 AC 97 ms
47,004 KB
testcase_17 AC 99 ms
46,992 KB
testcase_18 AC 97 ms
47,120 KB
testcase_19 AC 97 ms
46,988 KB
testcase_20 AC 97 ms
46,992 KB
testcase_21 AC 98 ms
47,112 KB
testcase_22 AC 98 ms
46,988 KB
testcase_23 AC 96 ms
47,240 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, n-1, i);   
  }
  console.log(ans);
}

function move(bit, n, i) {
  let j = i;
  while(true) {
    if(bit[j] === "0") break;
    if(j >= n) { j = n; break; }
    if(bit[j+1] === "1") { j+=1; break; }
    j+=2;
  }
  return j-i;
}

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