結果

問題 No.1469 programing
ユーザー harurunharurun
提出日時 2021-04-03 19:12:27
言語 Bash
(Bash 5.1.16)
結果
TLE  
実行時間 -
コード長 134 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 10,784 KB
最終ジャッジ日時 2024-06-07 10:12:35
合計ジャッジ時間 5,567 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 25 ms
5,376 KB
testcase_05 AC 123 ms
5,376 KB
testcase_06 AC 37 ms
5,376 KB
testcase_07 AC 121 ms
5,376 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

read a
b=${#a}
d=${a:0:1}
echo -n $d
for((i=1;i<b;i++)); do
  c=${a:i:1} 
  if [ "$c" != "$d" ]; then echo -n $c; fi
  d=$c
done
echo
0