結果

問題 No.1469 programing
ユーザー maru65536maru65536
提出日時 2021-04-09 21:51:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,304 KB
最終ジャッジ日時 2024-06-25 05:06:51
合計ジャッジ時間 3,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 29 ms
10,624 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 71 ms
11,648 KB
testcase_11 AC 113 ms
13,024 KB
testcase_12 AC 92 ms
12,288 KB
testcase_13 RE -
testcase_14 AC 137 ms
13,736 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
b=[]
if len(s)==1:
    print(s)
for i in range(len(s)-1):
    if s[i]!=s[i+1]:
        b.append(s[i])
if s[-1]!=s[-2]:
    b.append(s[-1])
print(''.join(b))
0