結果

問題 No.1469 programing
ユーザー wolgnikwolgnik
提出日時 2021-04-09 21:22:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 997 ms / 3,000 ms
コード長 148 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 467,460 KB
最終ジャッジ日時 2024-06-25 03:54:40
合計ジャッジ時間 3,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 42 ms
59,136 KB
testcase_06 AC 41 ms
58,752 KB
testcase_07 AC 41 ms
58,880 KB
testcase_08 AC 53 ms
73,088 KB
testcase_09 AC 59 ms
79,104 KB
testcase_10 AC 57 ms
77,440 KB
testcase_11 AC 71 ms
95,232 KB
testcase_12 AC 61 ms
84,608 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 94 ms
102,400 KB
testcase_15 AC 85 ms
96,000 KB
testcase_16 AC 106 ms
113,212 KB
testcase_17 AC 997 ms
467,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
S = list(input())[: -1]
s = []
for x in S:
  if len(s) and s[-1] == x: s.pop()
  s.append(x)
print("".join(s))
0