結果

問題 No.1469 programing
ユーザー NoaSaber
提出日時 2021-04-09 22:04:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 119 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 272,780 KB
最終ジャッジ日時 2024-06-25 05:32:40
合計ジャッジ時間 6,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8 TLE * 1 -- * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
tmp=""
ans=""
for i in N:
    if tmp==i:
        continue
    else:
        tmp=i
        ans+=tmp
print(ans)
0