結果

問題 No.1469 programing
ユーザー kfield1950kfield1950
提出日時 2021-04-14 00:55:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 3,000 ms
コード長 198 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 95,996 KB
最終ジャッジ日時 2024-06-30 03:19:14
合計ジャッジ時間 2,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,132 KB
testcase_01 AC 35 ms
53,016 KB
testcase_02 AC 36 ms
52,640 KB
testcase_03 AC 37 ms
53,184 KB
testcase_04 AC 40 ms
54,564 KB
testcase_05 AC 46 ms
62,608 KB
testcase_06 AC 46 ms
62,460 KB
testcase_07 AC 52 ms
63,448 KB
testcase_08 AC 62 ms
76,620 KB
testcase_09 AC 63 ms
76,992 KB
testcase_10 AC 65 ms
76,608 KB
testcase_11 AC 70 ms
78,320 KB
testcase_12 AC 66 ms
78,280 KB
testcase_13 AC 35 ms
51,628 KB
testcase_14 AC 77 ms
79,084 KB
testcase_15 AC 67 ms
77,904 KB
testcase_16 AC 77 ms
78,508 KB
testcase_17 AC 293 ms
95,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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