結果

問題 No.1469 programing
ユーザー kohei2019kohei2019
提出日時 2022-05-21 18:49:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 805 ms / 3,000 ms
コード長 130 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 342,368 KB
最終ジャッジ日時 2024-09-20 12:03:42
合計ジャッジ時間 4,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 44 ms
52,992 KB
testcase_05 AC 55 ms
62,208 KB
testcase_06 AC 53 ms
59,520 KB
testcase_07 AC 58 ms
62,336 KB
testcase_08 AC 89 ms
86,912 KB
testcase_09 AC 95 ms
91,264 KB
testcase_10 AC 96 ms
89,344 KB
testcase_11 AC 127 ms
101,044 KB
testcase_12 AC 113 ms
97,664 KB
testcase_13 AC 42 ms
51,456 KB
testcase_14 AC 146 ms
111,176 KB
testcase_15 AC 113 ms
94,616 KB
testcase_16 AC 140 ms
109,764 KB
testcase_17 AC 805 ms
342,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
l = [S[0]]
N = len(S)
for i in range(1,N):
    if S[i-1] == S[i]:
        continue
    l.append(S[i])
print(*l,sep='')
0