結果

問題 No.1469 programing
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-05-12 19:31:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 118 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 282,644 KB
最終ジャッジ日時 2024-09-23 05:50:44
合計ジャッジ時間 7,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,088 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 43 ms
60,288 KB
testcase_06 AC 42 ms
57,984 KB
testcase_07 AC 44 ms
59,904 KB
testcase_08 AC 292 ms
84,864 KB
testcase_09 AC 488 ms
97,924 KB
testcase_10 AC 409 ms
92,868 KB
testcase_11 TLE -
testcase_12 AC 1,806 ms
259,368 KB
testcase_13 AC 37 ms
51,856 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