結果

問題 No.1469 programing
ユーザー 萩3
提出日時 2021-04-30 17:07:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 3,000 ms
コード長 115 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 293,536 KB
最終ジャッジ日時 2024-07-18 13:55:20
合計ジャッジ時間 2,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

s=str(input())
word=[]
a=str(0)
for i in s:
  if a!=i:
    a=i
    word.append(i)

words=''.join(word)
print(words)
0