結果

問題 No.1469 programing
ユーザー 萩3萩3
提出日時 2021-04-30 16:29:29
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 224 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 544,652 KB
最終ジャッジ日時 2024-07-18 13:19:20
合計ジャッジ時間 2,974 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,308 KB
testcase_01 AC 35 ms
55,044 KB
testcase_02 AC 36 ms
54,528 KB
testcase_03 AC 35 ms
54,376 KB
testcase_04 AC 34 ms
54,016 KB
testcase_05 AC 42 ms
62,140 KB
testcase_06 AC 39 ms
60,808 KB
testcase_07 AC 40 ms
62,272 KB
testcase_08 AC 50 ms
73,420 KB
testcase_09 AC 67 ms
85,732 KB
testcase_10 AC 54 ms
75,264 KB
testcase_11 AC 81 ms
92,008 KB
testcase_12 AC 77 ms
89,952 KB
testcase_13 AC 36 ms
55,136 KB
testcase_14 AC 77 ms
92,456 KB
testcase_15 AC 77 ms
92,460 KB
testcase_16 AC 112 ms
117,084 KB
testcase_17 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
cs=[c for c in input()]
current = ''
deq = collections.deque(cs)
for _ in range(len(cs)):
    tmp = deq.popleft()
    if current == tmp: continue

    current = tmp
    deq.append(tmp)

print(''.join(deq))
0