結果

問題 No.289 数字を全て足そう
ユーザー Beginer_
提出日時 2025-05-06 21:52:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2025-05-06 21:52:25
合計ジャッジ時間 2,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2 RE * 1
other WA * 19 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

def number(S):
	numbers= []
	
	for numbers in S:
		if S.isdigit():
			numbers.append(S)
		for i in numbers:
			i += numbers
		
	return i
	
def main():
	S= input()
	result= number(S)
	print(result)
	
main()
0