結果

問題 No.1469 programing
ユーザー NoaSaberNoaSaber
提出日時 2021-04-09 22:06:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 499 ms / 3,000 ms
コード長 172 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 268,212 KB
最終ジャッジ日時 2024-06-25 05:36:21
合計ジャッジ時間 2,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 40 ms
53,776 KB
testcase_02 AC 41 ms
53,812 KB
testcase_03 AC 41 ms
53,552 KB
testcase_04 AC 41 ms
54,280 KB
testcase_05 AC 53 ms
61,164 KB
testcase_06 AC 45 ms
60,712 KB
testcase_07 AC 47 ms
60,540 KB
testcase_08 AC 52 ms
69,772 KB
testcase_09 AC 55 ms
72,500 KB
testcase_10 AC 54 ms
71,316 KB
testcase_11 AC 80 ms
90,080 KB
testcase_12 AC 54 ms
73,848 KB
testcase_13 AC 39 ms
53,884 KB
testcase_14 AC 81 ms
90,300 KB
testcase_15 AC 71 ms
83,300 KB
testcase_16 AC 77 ms
82,968 KB
testcase_17 AC 499 ms
268,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
from collections import deque
tmp=""
ans=deque([])
for i in N:
    if tmp==i:
        continue
    else:
        tmp=i
        ans.append(tmp)
print("".join(ans))
0