結果

問題 No.1469 programing
ユーザー kfield1950kfield1950
提出日時 2021-04-13 20:31:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 145 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 270,380 KB
最終ジャッジ日時 2024-06-30 01:05:57
合計ジャッジ時間 6,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,644 KB
testcase_01 AC 36 ms
52,816 KB
testcase_02 AC 36 ms
52,252 KB
testcase_03 AC 36 ms
53,088 KB
testcase_04 AC 38 ms
52,012 KB
testcase_05 AC 43 ms
60,320 KB
testcase_06 AC 41 ms
59,048 KB
testcase_07 AC 42 ms
60,032 KB
testcase_08 AC 283 ms
84,820 KB
testcase_09 AC 483 ms
97,572 KB
testcase_10 AC 401 ms
93,076 KB
testcase_11 TLE -
testcase_12 AC 1,908 ms
259,596 KB
testcase_13 AC 36 ms
52,296 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ans = s[0]
if len(s) != 1:
    for i in range(1, len(s)):
        if s[i-1] != s[i]:
            ans = ans + s[i]
        
print(ans)
0