結果

問題 No.1469 programing
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-26 19:05:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 121 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 270,336 KB
最終ジャッジ日時 2024-06-06 02:10:30
合計ジャッジ時間 7,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
56,960 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 33 ms
51,812 KB
testcase_03 AC 32 ms
51,712 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 37 ms
60,160 KB
testcase_06 AC 39 ms
58,112 KB
testcase_07 AC 39 ms
60,160 KB
testcase_08 AC 270 ms
84,608 KB
testcase_09 AC 454 ms
97,944 KB
testcase_10 AC 391 ms
92,956 KB
testcase_11 TLE -
testcase_12 AC 1,746 ms
259,504 KB
testcase_13 AC 35 ms
52,392 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
ans=s[0]
for i in range(1,len(s)):
    if s[i]==s[i-1]:
        continue
    else:
        ans+=s[i]
print(ans)
0