日刊競プロ ABC255 -A - You should output ARC, though this is ABC.
A - You should output ARC, though this is ABC.
問題文
整数 R,C と 2 行 2 列からなる行列 A が与えられるので、 A
R,Cを出力してください。
考えたこと
二重配列を作成し、R,Cが参照した配列を出力すれば良いと考えた。配列は0から始まるので求める配列の参照先は[R-1][C-1]となる。
R,C=map(int,input().split())
Alist = list(map(int,input().split()))
Blist = list(map(int,input().split()))
Clist =list()
Clist.append(Alist)
Clist.append(Blist)
print (Clist[R-1][C-1])