結果

問題 No.1469 programing
ユーザー otsunekootsuneko
提出日時 2021-05-03 21:29:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 142 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,920 KB
最終ジャッジ日時 2024-07-22 11:52:13
合計ジャッジ時間 7,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,088 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 46 ms
59,648 KB
testcase_06 AC 45 ms
57,984 KB
testcase_07 AC 48 ms
60,416 KB
testcase_08 AC 349 ms
84,864 KB
testcase_09 AC 641 ms
97,920 KB
testcase_10 AC 557 ms
92,928 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

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

print(ans)
0