結果

問題 No.1469 programing
ユーザー O2MTO2MT
提出日時 2021-04-11 01:02:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 120 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 276,896 KB
最終ジャッジ日時 2024-06-26 21:48:31
合計ジャッジ時間 7,322 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,148 KB
testcase_01 AC 36 ms
52,940 KB
testcase_02 AC 35 ms
52,624 KB
testcase_03 AC 36 ms
52,612 KB
testcase_04 AC 36 ms
53,132 KB
testcase_05 AC 42 ms
60,908 KB
testcase_06 AC 42 ms
58,900 KB
testcase_07 AC 42 ms
61,504 KB
testcase_08 AC 331 ms
84,944 KB
testcase_09 AC 572 ms
97,908 KB
testcase_10 AC 517 ms
92,944 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = str(input())
ans = S[0]
for i in range(1,len(S)):
    if S[i] == S[i-1]:
        continue
    ans += S[i]
print(ans)
0