結果

問題 No.1469 programing
ユーザー 👑 KazunKazun
提出日時 2021-04-09 21:22:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 76 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 86,988 KB
実行使用メモリ 271,304 KB
最終ジャッジ日時 2023-09-07 09:38:49
合計ジャッジ時間 7,416 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,988 KB
testcase_01 AC 72 ms
71,228 KB
testcase_02 AC 70 ms
71,236 KB
testcase_03 AC 69 ms
71,208 KB
testcase_04 AC 71 ms
71,372 KB
testcase_05 AC 75 ms
75,936 KB
testcase_06 AC 73 ms
75,604 KB
testcase_07 AC 74 ms
76,136 KB
testcase_08 AC 354 ms
85,884 KB
testcase_09 AC 586 ms
99,244 KB
testcase_10 AC 491 ms
94,208 KB
testcase_11 TLE -
testcase_12 AC 2,077 ms
260,780 KB
testcase_13 AC 71 ms
71,388 KB
testcase_14 TLE -
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