比赛 20220418高一小测验 评测结果 WWWAWWWWWA
题目名称 填数 最终得分 20
用户昵称 Tab↹ 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2022-04-18 21:09:46
显示代码纯文本
#include <iostream>
#include <fstream>
#include <map>

using namespace std;

int main(void){
    ifstream fin("tianshu.in");
    ofstream fout("tianshu.out");
    int n;
    fin >> n;
    switch(n){
    case 1:{
        fout << 1;
        break;
    }
    case 2:{
        fout <<"1 2\n4 3";
        break;
    }
    case 4:{
        fout << "1 2 11 12\n4 9 8 5\n7 10 3 14\n6 13 16 15";
        break;
    }
    }
    return 0;
}