結果

問題 No.1469 programing
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-05-12 19:31:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 118 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 282,020 KB
最終ジャッジ日時 2023-10-24 13:29:02
合計ジャッジ時間 12,574 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,532 KB
testcase_01 AC 36 ms
53,184 KB
testcase_02 AC 36 ms
53,184 KB
testcase_03 AC 34 ms
53,184 KB
testcase_04 AC 34 ms
53,184 KB
testcase_05 AC 38 ms
61,356 KB
testcase_06 AC 37 ms
59,192 KB
testcase_07 AC 39 ms
61,356 KB
testcase_08 AC 255 ms
84,220 KB
testcase_09 AC 436 ms
97,484 KB
testcase_10 AC 371 ms
92,464 KB
testcase_11 TLE -
testcase_12 AC 1,705 ms
259,196 KB
testcase_13 AC 35 ms
53,184 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
t=''
tmp=''
for ch in s:
    if ch == tmp:
        continue
    else:
        t+=ch
        tmp=ch

print(t)
0