結果

問題 No.1469 programing
ユーザー 小野寺健小野寺健
提出日時 2021-04-24 09:51:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,172 ms / 3,000 ms
コード長 61 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 10,656 KB
実行使用メモリ 40,632 KB
最終ジャッジ日時 2023-09-17 13:31:09
合計ジャッジ時間 4,576 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
9,088 KB
testcase_01 AC 26 ms
9,040 KB
testcase_02 AC 26 ms
9,044 KB
testcase_03 AC 25 ms
9,092 KB
testcase_04 AC 25 ms
8,972 KB
testcase_05 AC 26 ms
9,000 KB
testcase_06 AC 26 ms
9,096 KB
testcase_07 AC 27 ms
9,100 KB
testcase_08 AC 60 ms
10,308 KB
testcase_09 AC 76 ms
10,424 KB
testcase_10 AC 67 ms
10,504 KB
testcase_11 AC 33 ms
9,356 KB
testcase_12 AC 31 ms
9,204 KB
testcase_13 AC 25 ms
9,028 KB
testcase_14 AC 37 ms
9,632 KB
testcase_15 AC 152 ms
10,712 KB
testcase_16 AC 242 ms
12,104 KB
testcase_17 AC 2,172 ms
40,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

S = input()

print(re.sub('([a-z])\\1', '\\1', S))
0