結果

問題 No.1765 While Shining
ユーザー monakamonaka
提出日時 2022-01-02 03:48:21
言語 TypeScript
(5.7.2)
結果
TLE  
実行時間 -
コード長 433 bytes
コンパイル時間 8,690 ms
コンパイル使用メモリ 228,364 KB
実行使用メモリ 85,132 KB
最終ジャッジ日時 2024-12-31 16:42:29
合計ジャッジ時間 20,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
46,112 KB
testcase_01 AC 64 ms
80,640 KB
testcase_02 AC 64 ms
46,244 KB
testcase_03 AC 63 ms
85,132 KB
testcase_04 TLE -
testcase_05 AC 65 ms
39,424 KB
testcase_06 AC 64 ms
39,552 KB
testcase_07 AC 65 ms
39,552 KB
testcase_08 AC 65 ms
39,552 KB
testcase_09 AC 89 ms
45,436 KB
testcase_10 AC 95 ms
46,828 KB
testcase_11 AC 93 ms
46,584 KB
testcase_12 AC 93 ms
46,684 KB
testcase_13 AC 93 ms
46,652 KB
testcase_14 AC 98 ms
46,996 KB
testcase_15 AC 97 ms
46,988 KB
testcase_16 AC 97 ms
46,860 KB
testcase_17 AC 97 ms
46,988 KB
testcase_18 AC 96 ms
47,244 KB
testcase_19 AC 100 ms
46,984 KB
testcase_20 AC 97 ms
47,116 KB
testcase_21 AC 97 ms
47,244 KB
testcase_22 TLE -
testcase_23 AC 97 ms
46,972 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) {
    if(bit[j] === "0" || j === (bit.length-1)) break;
    if(bit[j+1] === "1") { j+=1; break; }
    j+=2;
  }
  return j-i;
}

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