結果

問題 No.1469 programing
ユーザー ああいいああいい
提出日時 2021-12-23 20:05:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,837 ms / 3,000 ms
コード長 219 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,252 KB
最終ジャッジ日時 2024-09-17 18:48:07
合計ジャッジ時間 5,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 29 ms
10,368 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 82 ms
11,392 KB
testcase_09 AC 98 ms
11,620 KB
testcase_10 AC 95 ms
11,648 KB
testcase_11 AC 202 ms
13,032 KB
testcase_12 AC 160 ms
12,160 KB
testcase_13 AC 29 ms
10,368 KB
testcase_14 AC 243 ms
13,736 KB
testcase_15 AC 138 ms
12,204 KB
testcase_16 AC 209 ms
13,676 KB
testcase_17 AC 1,837 ms
42,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
i = 0
l = []
while i < len(S):
    if i == len(S)-1:
        l.append(S[i])
        i += 1
        continue
    l.append(S[i])
    if S[i+1] == S[i]:
        i += 2
    else:
        i += 1
print("".join(l))
0