結果

問題 No.1469 programing
ユーザー O2MTO2MT
提出日時 2021-04-11 01:17:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 172 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 275,712 KB
最終ジャッジ日時 2024-06-26 21:57:03
合計ジャッジ時間 13,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
56,960 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 46 ms
59,776 KB
testcase_06 AC 39 ms
57,984 KB
testcase_07 AC 43 ms
60,672 KB
testcase_08 AC 305 ms
84,864 KB
testcase_09 AC 504 ms
97,920 KB
testcase_10 AC 433 ms
93,356 KB
testcase_11 TLE -
testcase_12 AC 1,946 ms
260,004 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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