結果

問題 No.1469 programing
ユーザー harurunharurun
提出日時 2021-04-09 19:46:12
言語 Bash
(Bash 5.1.16)
結果
TLE  
実行時間 -
コード長 108 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 11,296 KB
最終ジャッジ日時 2024-06-25 02:13:29
合計ジャッジ時間 16,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,296 KB
testcase_01 AC 4 ms
9,504 KB
testcase_02 AC 4 ms
9,272 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 15 ms
6,940 KB
testcase_05 AC 34 ms
6,940 KB
testcase_06 AC 17 ms
6,940 KB
testcase_07 AC 33 ms
6,944 KB
testcase_08 AC 1,504 ms
6,940 KB
testcase_09 AC 2,039 ms
6,944 KB
testcase_10 AC 1,885 ms
6,944 KB
testcase_11 TLE -
testcase_12 AC 2,633 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 TLE -
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