結果

問題 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,811 ms / 3,000 ms
コード長 148 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,280 KB
最終ジャッジ日時 2024-07-17 10:53:40
合計ジャッジ時間 4,923 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 33 ms
10,496 KB
testcase_06 AC 31 ms
10,368 KB
testcase_07 AC 31 ms
10,368 KB
testcase_08 AC 69 ms
11,392 KB
testcase_09 AC 84 ms
11,604 KB
testcase_10 AC 78 ms
11,520 KB
testcase_11 AC 121 ms
12,884 KB
testcase_12 AC 98 ms
12,144 KB
testcase_13 AC 31 ms
10,368 KB
testcase_14 AC 146 ms
13,600 KB
testcase_15 AC 136 ms
12,180 KB
testcase_16 AC 207 ms
13,664 KB
testcase_17 AC 1,811 ms
42,280 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