結果

問題 No.1469 programing
ユーザー rodearodea
提出日時 2021-04-11 12:26:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 135 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 278,272 KB
最終ジャッジ日時 2024-06-27 07:53:10
合計ジャッジ時間 7,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 47 ms
60,160 KB
testcase_06 AC 44 ms
58,752 KB
testcase_07 AC 48 ms
60,544 KB
testcase_08 AC 313 ms
84,992 KB
testcase_09 AC 510 ms
98,432 KB
testcase_10 AC 450 ms
93,056 KB
testcase_11 TLE -
testcase_12 AC 1,859 ms
259,968 KB
testcase_13 AC 43 ms
51,840 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)

ans = ""
for i in range(n):
    if i + 1 < n and s[i] == s[i + 1]:
        continue
    ans += s[i]

print(ans)
0