結果

問題 No.1469 programing
ユーザー hir355hir355
提出日時 2021-04-09 21:28:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 111 bytes
コンパイル時間 1,503 ms
コンパイル使用メモリ 87,008 KB
実行使用メモリ 282,940 KB
最終ジャッジ日時 2023-09-07 09:53:45
合計ジャッジ時間 9,079 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
75,844 KB
testcase_01 AC 68 ms
71,416 KB
testcase_02 AC 67 ms
71,160 KB
testcase_03 AC 67 ms
71,524 KB
testcase_04 AC 68 ms
71,148 KB
testcase_05 AC 73 ms
76,056 KB
testcase_06 AC 70 ms
75,948 KB
testcase_07 AC 72 ms
75,928 KB
testcase_08 AC 294 ms
86,008 KB
testcase_09 AC 489 ms
99,540 KB
testcase_10 AC 417 ms
94,416 KB
testcase_11 TLE -
testcase_12 AC 1,704 ms
260,708 KB
testcase_13 AC 64 ms
71,332 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
res=''
for i in range(len(s)):
    if i>0 and s[i]==s[i-1]:
        continue
    res+=s[i]
print(res)
0