結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー zhongcunyonggui57-hue
提出日時 2025-11-10 03:17:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 25 ms / 1,000 ms
コード長 171 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2025-11-10 03:24:34
合計ジャッジ時間 884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

li=input().split()
lis=input().split()
list1=li+lis
for i in range(len(list1)):
	if list1[i].isdecimal()==True:
		list1[i]=int(list1[i])
print(list1[0]+list1[1], list1[2])
0