結果

問題 No.1469 programing
ユーザー dangodango
提出日時 2023-06-12 20:02:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 153 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 274,784 KB
最終ジャッジ日時 2024-06-11 20:30:28
合計ジャッジ時間 8,098 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
56,960 KB
testcase_01 AC 31 ms
51,968 KB
testcase_02 AC 32 ms
52,352 KB
testcase_03 AC 34 ms
51,584 KB
testcase_04 AC 32 ms
52,352 KB
testcase_05 AC 36 ms
60,416 KB
testcase_06 AC 34 ms
58,368 KB
testcase_07 AC 35 ms
59,904 KB
testcase_08 AC 250 ms
79,616 KB
testcase_09 AC 407 ms
86,400 KB
testcase_10 AC 357 ms
84,012 KB
testcase_11 TLE -
testcase_12 AC 1,623 ms
259,456 KB
testcase_13 AC 31 ms
53,144 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def n(s):
    result = ''
    for i in range(len(s)):
        if i == 0 or s[i] != s[i-1]:
            result += s[i]
    return result
print(n(input()))
0