結果

問題 No.1469 programing
ユーザー harurunharurun
提出日時 2021-04-09 19:42:00
言語 Bash
(Bash 5.1.16)
結果
TLE  
実行時間 -
コード長 126 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-06-25 02:09:39
合計ジャッジ時間 17,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
11,164 KB
testcase_01 AC 4 ms
9,948 KB
testcase_02 AC 4 ms
8,992 KB
testcase_03 AC 7 ms
9,432 KB
testcase_04 AC 15 ms
6,944 KB
testcase_05 AC 34 ms
6,940 KB
testcase_06 AC 18 ms
6,940 KB
testcase_07 AC 33 ms
6,944 KB
testcase_08 AC 1,530 ms
6,944 KB
testcase_09 AC 2,090 ms
6,940 KB
testcase_10 AC 1,928 ms
6,940 KB
testcase_11 TLE -
testcase_12 AC 2,667 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

read s
a=${s:0:1}
echo -n $a
echo $s | fold -w 1 | while read c; do
  if [ $a != $c ]; then
    echo -n $c
  fi
  a=$c  
done
0