結果

問題 No.1469 programing
ユーザー harurunharurun
提出日時 2021-04-03 17:18:33
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 822 ms / 3,000 ms
コード長 257 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 137,624 KB
最終ジャッジ日時 2024-06-07 04:17:49
合計ジャッジ時間 4,359 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
39,424 KB
testcase_01 AC 57 ms
39,168 KB
testcase_02 AC 57 ms
39,168 KB
testcase_03 AC 57 ms
39,168 KB
testcase_04 AC 61 ms
39,168 KB
testcase_05 AC 63 ms
39,296 KB
testcase_06 AC 61 ms
39,296 KB
testcase_07 AC 60 ms
39,296 KB
testcase_08 AC 83 ms
46,464 KB
testcase_09 AC 102 ms
50,304 KB
testcase_10 AC 90 ms
48,256 KB
testcase_11 AC 139 ms
58,208 KB
testcase_12 AC 102 ms
50,560 KB
testcase_13 AC 58 ms
39,040 KB
testcase_14 AC 141 ms
58,544 KB
testcase_15 AC 104 ms
50,220 KB
testcase_16 AC 148 ms
58,484 KB
testcase_17 AC 822 ms
137,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input){
 var S = input.split("\n")[0]; 
  var ans=S[0];
  var a=S[0];
  for(i=1;i<S.length;i++){
    if(S[i]!=a){
      ans+=S[i];
    }
    a=S[i];
  }
  console.log(ans);
  return;
}

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