結果

問題 No.1469 programing
ユーザー トミートミー
提出日時 2024-04-14 02:19:39
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 310 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 536,052 KB
最終ジャッジ日時 2024-10-03 00:23:46
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 41 ms
53,120 KB
testcase_05 AC 50 ms
62,336 KB
testcase_06 AC 49 ms
61,184 KB
testcase_07 AC 58 ms
63,872 KB
testcase_08 AC 80 ms
88,448 KB
testcase_09 AC 84 ms
92,544 KB
testcase_10 AC 85 ms
91,032 KB
testcase_11 AC 100 ms
102,656 KB
testcase_12 AC 97 ms
94,848 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 112 ms
113,280 KB
testcase_15 AC 107 ms
112,768 KB
testcase_16 AC 139 ms
134,876 KB
testcase_17 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    s = input()
    s_list = list(s)
    f_list = []
    for i in range(0, len(s_list)-1):
        f_list.append(s_list[i] != s_list[i+1])
    f_list.append(True)
    for i in range(0, len(s_list)):
        if f_list[i]:
            print(s_list[i], end="")


if __name__ == "__main__":
    main()
0