結果

問題 No.1469 programing
ユーザー pajannatpajannat
提出日時 2021-04-09 21:44:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 123 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 86,992 KB
実行使用メモリ 341,920 KB
最終ジャッジ日時 2023-09-07 10:38:20
合計ジャッジ時間 7,692 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
341,920 KB
testcase_01 AC 75 ms
71,252 KB
testcase_02 AC 74 ms
71,104 KB
testcase_03 AC 73 ms
71,216 KB
testcase_04 AC 74 ms
71,056 KB
testcase_05 AC 78 ms
75,988 KB
testcase_06 AC 80 ms
75,740 KB
testcase_07 AC 78 ms
75,964 KB
testcase_08 AC 382 ms
85,996 KB
testcase_09 AC 580 ms
99,184 KB
testcase_10 AC 516 ms
94,216 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

Ans = ""
Ans += S[0]

for i in range(1,len(S)):
    if S[i] != S[i-1]:
        Ans += S[i]
        
print(Ans)
0