結果

問題 No.2460 #強調#
ユーザー TetzTetz
提出日時 2023-09-22 22:11:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 86,532 KB
実行使用メモリ 79,596 KB
最終ジャッジ日時 2023-09-22 22:12:00
合計ジャッジ時間 4,063 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
79,416 KB
testcase_01 AC 141 ms
79,388 KB
testcase_02 AC 168 ms
79,376 KB
testcase_03 AC 141 ms
79,180 KB
testcase_04 AC 142 ms
79,392 KB
testcase_05 AC 140 ms
79,348 KB
testcase_06 AC 142 ms
79,408 KB
testcase_07 AC 140 ms
79,588 KB
testcase_08 AC 141 ms
79,384 KB
testcase_09 AC 152 ms
79,436 KB
testcase_10 AC 141 ms
79,404 KB
testcase_11 AC 141 ms
79,380 KB
testcase_12 AC 142 ms
79,596 KB
testcase_13 AC 142 ms
79,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

S = input()
m = re.search(r"#.*#", S)
print(m.group().replace("#", ""))
0