結果

問題 No.1469 programing
ユーザー toyuzukotoyuzuko
提出日時 2021-04-17 18:44:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 430 ms / 3,000 ms
コード長 124 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 291,880 KB
最終ジャッジ日時 2024-07-04 01:43:08
合計ジャッジ時間 3,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 41 ms
58,240 KB
testcase_06 AC 41 ms
58,624 KB
testcase_07 AC 43 ms
59,136 KB
testcase_08 AC 52 ms
70,144 KB
testcase_09 AC 54 ms
73,600 KB
testcase_10 AC 54 ms
72,960 KB
testcase_11 AC 78 ms
98,560 KB
testcase_12 AC 60 ms
81,152 KB
testcase_13 AC 36 ms
51,840 KB
testcase_14 AC 81 ms
98,432 KB
testcase_15 AC 70 ms
89,472 KB
testcase_16 AC 78 ms
90,644 KB
testcase_17 AC 430 ms
291,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

res = [S[0]]

for i in range(1, len(S)):
    if S[i - 1] != S[i]:
        res.append(S[i])

print(''.join(res))
0