Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
127376 何辰熠 输出第i行第j列 C++ Accepted 0 MS 268 KB 157 2025-07-27 15:38:43

Tests(1/1):


Code:

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