結果

問題 No.1469 programing
ユーザー lie_of_lillie
提出日時 2021-05-12 19:31:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 118 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 282,644 KB
最終ジャッジ日時 2024-09-23 05:50:44
合計ジャッジ時間 7,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10 TLE * 2 -- * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
t=''
tmp=''
for ch in s:
    if ch == tmp:
        continue
    else:
        t+=ch
        tmp=ch

print(t)
0