結果

問題 No.1469 programing
ユーザー sasa8uyauya
提出日時 2025-07-22 02:17:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 525 ms / 3,000 ms
コード長 89 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 283,312 KB
最終ジャッジ日時 2025-07-22 02:17:41
合計ジャッジ時間 4,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
t=[]
for c in s:
	if len(t)>0 and t[-1]==c:
		t.pop()
	t+=[c]
print("".join(t))
0