2021团体程序设计天梯赛 L3-3 可怜的简单题

思路:

5分代码

Tip:

#include <bits/stdc++.h>

using namespace std;

const int maxn = 100000 + 5;

int main() {
    long long n, m;
    cin >> n >> m;
    if(n==1)
        cout << 1 << endl;
    else if (n % 2 != 0)
        cout << 36 << endl;
    return 0;
}

  

原文地址:https://www.cnblogs.com/Whiteying/p/14707827.html