mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
16 lines
308 B
Python
16 lines
308 B
Python
def problem_p03250(input_data):
|
|
# インポート
|
|
|
|
import numpy as np
|
|
|
|
# A,B,Cの値の獲得
|
|
|
|
num = list(map(int, input_data.split()))
|
|
|
|
# numリストの最大値を10倍
|
|
|
|
num[num.index(max(num))] = max(num) * 10
|
|
|
|
# npで要素の和を計算し、出力
|
|
|
|
return np.sum(num)
|