結果

問題 No.1469 programing
ユーザー 萩3萩3
提出日時 2021-04-30 16:25:40
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 264 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 544,564 KB
最終ジャッジ日時 2024-07-18 13:15:31
合計ジャッジ時間 3,849 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 48 ms
53,504 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 42 ms
53,760 KB
testcase_05 AC 54 ms
61,952 KB
testcase_06 AC 47 ms
60,544 KB
testcase_07 AC 50 ms
61,312 KB
testcase_08 AC 60 ms
73,216 KB
testcase_09 AC 86 ms
85,948 KB
testcase_10 AC 61 ms
75,136 KB
testcase_11 AC 87 ms
92,160 KB
testcase_12 AC 87 ms
89,728 KB
testcase_13 AC 42 ms
53,504 KB
testcase_14 AC 91 ms
92,544 KB
testcase_15 AC 91 ms
92,408 KB
testcase_16 AC 131 ms
117,132 KB
testcase_17 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
cs=[c for c in input()]
current = ''
origin = collections.deque(cs)
harurun = collections.deque()
while len(origin)>0:
    tmp = origin.popleft()
    if current == tmp: continue

    current = tmp
    harurun.append(tmp)

print(''.join(harurun))
0