1 条题解

  • 0
    @ 2026-5-17 14:30:03
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int r, c, a[3][3];
        cin >> r >> c;
        for(int i = 1; i <= 2; i++){
            for(int j = 1; j <= 2; j++) cin >> a[i][j];
        }
        cout << a[r][c];
        return 0;
    }
    • 1

    [ABC255A] You should output ARC, though this is ABC.

    信息

    ID
    9957
    时间
    2000ms
    内存
    1024MiB
    难度
    4
    标签
    递交数
    21
    已通过
    17
    上传者