結果

問題 No.1469 programing
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-04-09 21:26:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,170 ms / 3,000 ms
コード長 169 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 511,508 KB
最終ジャッジ日時 2024-06-25 04:05:32
合計ジャッジ時間 4,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,456 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 45 ms
58,368 KB
testcase_06 AC 43 ms
57,984 KB
testcase_07 AC 46 ms
58,624 KB
testcase_08 AC 59 ms
69,120 KB
testcase_09 AC 63 ms
72,832 KB
testcase_10 AC 62 ms
71,680 KB
testcase_11 AC 73 ms
86,400 KB
testcase_12 AC 63 ms
78,208 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 86 ms
97,664 KB
testcase_15 AC 73 ms
85,632 KB
testcase_16 AC 112 ms
112,520 KB
testcase_17 AC 1,170 ms
511,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())
n = len(s)

ans = []

for i in range(n-1):
    if s[i] == s[i+1]:
        pass
    else:
        ans.append(s[i])
ans.append(s[-1])
print("".join(ans))
0