結果

問題 No.1469 programing
ユーザー c-yanc-yan
提出日時 2021-04-10 20:24:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 799 ms / 3,000 ms
コード長 110 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,360 KB
最終ジャッジ日時 2024-06-26 09:02:35
合計ジャッジ時間 3,070 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 32 ms
10,496 KB
testcase_08 AC 48 ms
11,648 KB
testcase_09 AC 54 ms
11,732 KB
testcase_10 AC 52 ms
11,520 KB
testcase_11 AC 74 ms
13,312 KB
testcase_12 AC 63 ms
12,288 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 86 ms
13,840 KB
testcase_15 AC 75 ms
12,820 KB
testcase_16 AC 106 ms
14,292 KB
testcase_17 AC 799 ms
47,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

t = [S[0]]
for c in S[1:]:
    if c == t[-1]:
        continue
    t.append(c)
print(''.join(t))
0