結果

問題 No.1469 programing
ユーザー DrDrpilot
提出日時 2022-01-26 19:05:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 121 bytes
コンパイル時間 559 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 321,408 KB
最終ジャッジ日時 2024-12-23 12:55:38
合計ジャッジ時間 22,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 TLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
ans=s[0]
for i in range(1,len(s)):
    if s[i]==s[i-1]:
        continue
    else:
        ans+=s[i]
print(ans)
0