結果

問題 No.1469 programing
ユーザー momoyuumomoyuu
提出日時 2022-08-03 17:08:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 127 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 270,560 KB
最終ジャッジ日時 2024-09-13 10:21:00
合計ジャッジ時間 12,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,136 KB
testcase_01 AC 37 ms
52,724 KB
testcase_02 AC 38 ms
52,516 KB
testcase_03 AC 37 ms
52,872 KB
testcase_04 AC 37 ms
52,924 KB
testcase_05 AC 41 ms
61,364 KB
testcase_06 AC 39 ms
59,148 KB
testcase_07 AC 41 ms
60,700 KB
testcase_08 AC 326 ms
84,732 KB
testcase_09 AC 574 ms
97,912 KB
testcase_10 AC 466 ms
93,208 KB
testcase_11 TLE -
testcase_12 AC 1,865 ms
259,756 KB
testcase_13 AC 45 ms
52,472 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
s = ""
now = ""
for i in range(len(S)):
    if now == S[i]:
        continue
    s += S[i]
    now  = S[i]
print(s)
0