結果

問題 No.1469 programing
ユーザー 👑 obakyanobakyan
提出日時 2021-04-14 00:01:12
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 520 ms / 3,000 ms
コード長 184 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 44,956 KB
最終ジャッジ日時 2024-06-30 02:49:23
合計ジャッジ時間 1,725 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 15 ms
5,376 KB
testcase_11 AC 13 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 17 ms
7,168 KB
testcase_15 AC 27 ms
5,376 KB
testcase_16 AC 44 ms
5,600 KB
testcase_17 AC 520 ms
44,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = io.read()
t = {}
for i = 1, #a - 1 do
  if a:sub(i, i) ~= a:sub(i + 1, i + 1) then
    table.insert(t, a:sub(i, i))
  end
end
table.insert(t, a:sub(#a, #a))
print(table.concat(t))
0