結果

問題 No.1469 programing
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-11 18:32:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,823 ms / 3,000 ms
コード長 320 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 213,612 KB
最終ジャッジ日時 2024-06-27 13:07:59
合計ジャッジ時間 4,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,368 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 74 ms
16,128 KB
testcase_09 AC 95 ms
17,920 KB
testcase_10 AC 82 ms
17,408 KB
testcase_11 AC 146 ms
28,324 KB
testcase_12 AC 116 ms
23,600 KB
testcase_13 AC 30 ms
10,240 KB
testcase_14 AC 186 ms
34,160 KB
testcase_15 AC 138 ms
22,552 KB
testcase_16 AC 212 ms
30,772 KB
testcase_17 AC 1,823 ms
213,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def RunLengthEncoding(S):
    res = []
    N = len(S)
    i = 0
    while i < N:
        cnt = 1
        while i < N - 1 and S[i] == S[i + 1]:
            cnt += 1
            i += 1
        res.append((S[i], cnt))
        i += 1
    return res


S = RunLengthEncoding(input())
ans = "".join(k for k, v in S)
print(ans)
0