結果

問題 No.1469 programing
ユーザー pajannatpajannat
提出日時 2021-04-09 21:44:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 123 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 284,984 KB
最終ジャッジ日時 2024-06-25 04:50:46
合計ジャッジ時間 12,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
58,656 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 40 ms
60,032 KB
testcase_06 AC 40 ms
58,368 KB
testcase_07 AC 42 ms
60,416 KB
testcase_08 AC 270 ms
84,608 KB
testcase_09 AC 463 ms
98,048 KB
testcase_10 AC 399 ms
92,928 KB
testcase_11 TLE -
testcase_12 AC 1,693 ms
259,732 KB
testcase_13 AC 36 ms
52,724 KB
testcase_14 TLE -
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