Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
11882 徐一喆 输出第i行第j列 C++ Accepted 1 MS 728 KB 174 2021-05-18 12:14:11

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; int c[3][4]={1,3,5,7,9,11,13,15,17,19,21,23}; cout<<c[a][b]<<endl; return 0; }