Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85878 丁俊杰 输出第i行第j列 Python3 Accepted 35 MS 3756 KB 98 2024-07-21 01:23:29

Tests(1/1):


Code:

a=[[1,3,5,7], [9,11,13,15], [17,19,21,23]] i,j=map(int,input().split()) print(a[i][j])