結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
9,192 KB
testcase_01 AC 24 ms
9,084 KB
testcase_02 AC 25 ms
9,072 KB
testcase_03 AC 25 ms
9,008 KB
testcase_04 AC 25 ms
9,152 KB
testcase_05 AC 26 ms
9,096 KB
testcase_06 AC 25 ms
9,112 KB
testcase_07 AC 24 ms
9,040 KB
testcase_08 AC 24 ms
9,188 KB
testcase_09 AC 25 ms
9,152 KB
testcase_10 AC 25 ms
9,152 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