結果

問題 No.1469 programing
ユーザー O2MTO2MT
提出日時 2021-04-11 01:05:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 126 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 277,204 KB
最終ジャッジ日時 2024-06-26 21:50:36
合計ジャッジ時間 6,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,416 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
53,096 KB
testcase_03 AC 40 ms
52,580 KB
testcase_04 AC 38 ms
53,084 KB
testcase_05 AC 44 ms
62,140 KB
testcase_06 AC 43 ms
58,976 KB
testcase_07 AC 45 ms
62,296 KB
testcase_08 AC 357 ms
84,772 KB
testcase_09 AC 591 ms
97,904 KB
testcase_10 AC 501 ms
93,252 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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