結果

問題 No.1469 programing
ユーザー HAPPAHAPPA
提出日時 2021-04-09 21:33:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 328 ms / 3,000 ms
コード長 327 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,280 KB
最終ジャッジ日時 2024-06-25 04:20:52
合計ジャッジ時間 2,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,368 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 28 ms
10,368 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 28 ms
10,368 KB
testcase_07 AC 28 ms
10,368 KB
testcase_08 AC 40 ms
10,752 KB
testcase_09 AC 39 ms
10,880 KB
testcase_10 AC 38 ms
10,880 KB
testcase_11 AC 52 ms
11,108 KB
testcase_12 AC 45 ms
11,008 KB
testcase_13 AC 28 ms
10,368 KB
testcase_14 AC 57 ms
11,308 KB
testcase_15 AC 46 ms
11,264 KB
testcase_16 AC 58 ms
11,644 KB
testcase_17 AC 328 ms
20,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
input = sys.stdin.readline
f_inf = float('inf')
MOD = 10 ** 9 + 7


def solve():
    S = input().rstrip()
    res = ""
    prev = None
    for s in S:
        if s == prev:
            continue
        res += s
        prev = s
    print(res)


if __name__ == '__main__':
    solve()
0