結果

問題 No.1469 programing
ユーザー harurunharurun
提出日時 2021-04-09 19:46:12
言語 Bash
(Bash 5.1.16)
結果
TLE  
実行時間 -
コード長 108 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 5,284 KB
実行使用メモリ 8,072 KB
最終ジャッジ日時 2023-09-07 07:52:45
合計ジャッジ時間 11,617 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,072 KB
testcase_01 AC 4 ms
4,384 KB
testcase_02 AC 5 ms
4,384 KB
testcase_03 AC 8 ms
4,380 KB
testcase_04 AC 17 ms
4,380 KB
testcase_05 AC 39 ms
4,384 KB
testcase_06 AC 21 ms
4,384 KB
testcase_07 AC 40 ms
4,384 KB
testcase_08 AC 1,694 ms
4,384 KB
testcase_09 AC 2,306 ms
4,380 KB
testcase_10 AC 2,107 ms
4,380 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

a=A
read s
echo $s | grep -o . | while read c; do
  if [ $a != $c ]; then
    echo -n $c
  fi
  a=$c  
done
0