結果

問題 No.1469 programing
ユーザー momoyuumomoyuu
提出日時 2022-08-03 17:09:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 3,000 ms
コード長 141 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 312,380 KB
最終ジャッジ日時 2024-09-13 10:22:23
合計ジャッジ時間 3,233 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 44 ms
59,136 KB
testcase_06 AC 43 ms
57,728 KB
testcase_07 AC 45 ms
59,008 KB
testcase_08 AC 52 ms
70,144 KB
testcase_09 AC 56 ms
75,648 KB
testcase_10 AC 54 ms
73,728 KB
testcase_11 AC 75 ms
90,496 KB
testcase_12 AC 70 ms
90,832 KB
testcase_13 AC 38 ms
51,328 KB
testcase_14 AC 84 ms
94,804 KB
testcase_15 AC 71 ms
89,384 KB
testcase_16 AC 80 ms
90,608 KB
testcase_17 AC 484 ms
312,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
l = []
now = ""
for i in range(len(S)):
    if now == S[i]:
        continue
    l.append(S[i])
    now  = S[i]
print("".join(l))
0