結果

問題 No.1469 programing
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2023-07-03 13:05:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,567 ms / 3,000 ms
コード長 148 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 10,576 KB
実行使用メモリ 39,536 KB
最終ジャッジ日時 2023-09-24 10:06:26
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,964 KB
testcase_01 AC 17 ms
7,784 KB
testcase_02 AC 15 ms
7,780 KB
testcase_03 AC 15 ms
7,824 KB
testcase_04 AC 15 ms
7,816 KB
testcase_05 AC 17 ms
7,820 KB
testcase_06 AC 16 ms
7,780 KB
testcase_07 AC 16 ms
7,868 KB
testcase_08 AC 48 ms
8,732 KB
testcase_09 AC 60 ms
9,016 KB
testcase_10 AC 55 ms
8,872 KB
testcase_11 AC 89 ms
10,368 KB
testcase_12 AC 69 ms
9,460 KB
testcase_13 AC 16 ms
7,920 KB
testcase_14 AC 113 ms
10,864 KB
testcase_15 AC 103 ms
9,684 KB
testcase_16 AC 161 ms
10,936 KB
testcase_17 AC 1,567 ms
39,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)

t = []
for i, si in enumerate(s):
    if i + 1 < n and si == s[i + 1]:
        continue
    t.append(si)

print("".join(t))
0