結果

問題 No.1469 programing
ユーザー miya145592miya145592
提出日時 2023-05-07 17:01:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 3,000 ms
コード長 101 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 293,648 KB
最終ジャッジ日時 2024-11-24 16:21:26
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,708 KB
testcase_01 AC 36 ms
52,812 KB
testcase_02 AC 36 ms
53,016 KB
testcase_03 AC 35 ms
53,280 KB
testcase_04 AC 35 ms
53,908 KB
testcase_05 AC 38 ms
58,364 KB
testcase_06 AC 41 ms
58,840 KB
testcase_07 AC 40 ms
58,676 KB
testcase_08 AC 46 ms
70,364 KB
testcase_09 AC 52 ms
75,796 KB
testcase_10 AC 50 ms
74,136 KB
testcase_11 AC 60 ms
90,072 KB
testcase_12 AC 54 ms
80,700 KB
testcase_13 AC 32 ms
52,824 KB
testcase_14 AC 74 ms
98,348 KB
testcase_15 AC 63 ms
86,228 KB
testcase_16 AC 74 ms
90,708 KB
testcase_17 AC 366 ms
293,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
T = []
bk = ""
for s in S:
    if bk!=s:
        T.append(s)
    bk = s
print("".join(T))
0