結果

問題 No.1469 programing
ユーザー 👑 KazunKazun
提出日時 2021-04-09 21:21:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 100 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 284,604 KB
最終ジャッジ日時 2024-06-25 03:52:15
合計ジャッジ時間 7,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,600 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 42 ms
60,928 KB
testcase_06 AC 41 ms
58,240 KB
testcase_07 AC 40 ms
59,904 KB
testcase_08 AC 290 ms
85,120 KB
testcase_09 AC 483 ms
98,432 KB
testcase_10 AC 418 ms
93,428 KB
testcase_11 TLE -
testcase_12 AC 1,753 ms
260,108 KB
testcase_13 AC 36 ms
54,032 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
N=len(S)
S="*"+S
X=""
for i in range(1,N+1):
    if S[i-1]!=S[i]:
        X+=S[i]
print(X)
0