結果

問題 No.1469 programing
ユーザー maccha
提出日時 2021-04-09 22:27:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 138 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,292 KB
最終ジャッジ日時 2024-06-25 06:03:45
合計ジャッジ時間 7,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12 TLE * 1 -- * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

a = list(input())
for i in range(len(a)-1):
    if int(i) < len(a)-1:
        if a[i]==a[int(i)+1]:
            a.pop(i)
print("".join(a))
0