結果

問題 No.1469 programing
ユーザー rlangevinrlangevin
提出日時 2024-11-29 08:54:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,007 ms / 3,000 ms
コード長 130 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 378,712 KB
最終ジャッジ日時 2024-11-29 08:54:40
合計ジャッジ時間 4,483 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 41 ms
52,736 KB
testcase_05 AC 55 ms
62,080 KB
testcase_06 AC 46 ms
59,348 KB
testcase_07 AC 52 ms
62,336 KB
testcase_08 AC 78 ms
86,784 KB
testcase_09 AC 83 ms
91,264 KB
testcase_10 AC 82 ms
89,472 KB
testcase_11 AC 116 ms
101,288 KB
testcase_12 AC 99 ms
97,592 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 166 ms
113,800 KB
testcase_15 AC 100 ms
96,216 KB
testcase_16 AC 131 ms
104,688 KB
testcase_17 AC 1,007 ms
378,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
ans = []
pre = -1
for s in S:
    if s == pre:
        continue
    ans.append(s)
    pre = s
    
print(*ans, sep="")
0