結果

問題 No.1469 programing
ユーザー dangodango
提出日時 2023-06-12 20:04:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 3,000 ms
コード長 100 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 86,964 KB
実行使用メモリ 292,640 KB
最終ジャッジ日時 2023-09-02 13:55:30
合計ジャッジ時間 3,662 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,276 KB
testcase_01 AC 81 ms
71,356 KB
testcase_02 AC 77 ms
71,328 KB
testcase_03 AC 79 ms
71,296 KB
testcase_04 AC 78 ms
71,108 KB
testcase_05 AC 81 ms
75,604 KB
testcase_06 AC 80 ms
75,604 KB
testcase_07 AC 82 ms
75,772 KB
testcase_08 AC 88 ms
79,764 KB
testcase_09 AC 95 ms
82,116 KB
testcase_10 AC 89 ms
81,092 KB
testcase_11 AC 107 ms
96,356 KB
testcase_12 AC 95 ms
86,904 KB
testcase_13 AC 77 ms
70,968 KB
testcase_14 AC 118 ms
96,384 KB
testcase_15 AC 105 ms
85,732 KB
testcase_16 AC 119 ms
92,252 KB
testcase_17 AC 454 ms
292,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S, T, K = input(), [], ""
for C in S:
    if K != C:
        T.append(C)
    K = C
print("".join(T))
0