結果

問題 No.1469 programing
ユーザー 👑 KazunKazun
提出日時 2021-04-09 21:22:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 76 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 275,200 KB
最終ジャッジ日時 2024-06-25 03:55:43
合計ジャッジ時間 6,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 46 ms
60,288 KB
testcase_06 AC 43 ms
57,728 KB
testcase_07 AC 46 ms
59,520 KB
testcase_08 AC 350 ms
84,736 KB
testcase_09 AC 585 ms
97,984 KB
testcase_10 AC 534 ms
93,264 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()

X=""
t="*"
for s in S:
    if s!=t:
        X+=s
    t=s
print(X)
0