結果

問題 No.1469 programing
ユーザー rodearodea
提出日時 2021-04-11 12:30:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 414 ms / 3,000 ms
コード長 149 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 312,380 KB
最終ジャッジ日時 2024-06-27 07:56:41
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,280 KB
testcase_01 AC 37 ms
52,356 KB
testcase_02 AC 38 ms
52,136 KB
testcase_03 AC 38 ms
52,740 KB
testcase_04 AC 38 ms
51,944 KB
testcase_05 AC 41 ms
59,780 KB
testcase_06 AC 41 ms
59,212 KB
testcase_07 AC 43 ms
60,608 KB
testcase_08 AC 52 ms
70,584 KB
testcase_09 AC 54 ms
74,000 KB
testcase_10 AC 54 ms
73,152 KB
testcase_11 AC 77 ms
98,216 KB
testcase_12 AC 60 ms
82,112 KB
testcase_13 AC 37 ms
52,316 KB
testcase_14 AC 83 ms
97,948 KB
testcase_15 AC 71 ms
89,764 KB
testcase_16 AC 83 ms
90,576 KB
testcase_17 AC 414 ms
312,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)

ans = []
for i in range(n):
    if i + 1 < n and s[i] == s[i + 1]:
        continue
    ans.append(s[i])

print("".join(ans))
0