結果

問題 No.1469 programing
ユーザー 小野寺健小野寺健
提出日時 2021-04-24 09:51:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 958 ms / 3,000 ms
コード長 61 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 159,140 KB
最終ジャッジ日時 2024-07-04 09:01:44
合計ジャッジ時間 2,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 44 ms
13,312 KB
testcase_09 AC 50 ms
14,192 KB
testcase_10 AC 49 ms
14,080 KB
testcase_11 AC 36 ms
11,392 KB
testcase_12 AC 33 ms
11,008 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 38 ms
11,256 KB
testcase_15 AC 86 ms
19,440 KB
testcase_16 AC 122 ms
25,664 KB
testcase_17 AC 958 ms
159,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

S = input()

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