結果

問題 No.1499 羊が、何匹だっけ
ユーザー osrgy01osrgy01
提出日時 2022-01-16 10:39:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 10,740 KB
実行使用メモリ 9,220 KB
最終ジャッジ日時 2023-08-15 01:02:22
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
9,056 KB
testcase_01 AC 26 ms
9,160 KB
testcase_02 AC 27 ms
9,124 KB
testcase_03 AC 27 ms
8,988 KB
testcase_04 AC 27 ms
9,020 KB
testcase_05 AC 26 ms
9,088 KB
testcase_06 AC 26 ms
8,988 KB
testcase_07 AC 25 ms
9,220 KB
testcase_08 AC 26 ms
8,980 KB
testcase_09 AC 26 ms
9,124 KB
testcase_10 AC 25 ms
9,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

n = int(input())
for _ in range(n):
    s = input()
    print(re.sub(' ([(0-9]+) ', f" {str(list(map(lambda x: int(x) + 1, re.findall(' [0-9]+ ', s)))[0])} ", s))
0