比赛 2025.9.6 评测结果 AAWWWWWWWWWWWWWWWWWWW
题目名称 Bessie s Function 最终得分 10
用户昵称 二乾五 运行时间 0.056 s
代码语言 C++ 内存使用 3.70 MiB
提交时间 2025-09-06 11:30:20
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;

#define ll long long
#define cpy(a,b) copy(begin(a),end(a),begin(b))
#define ld long double
#define dot(x) fixed<<setprecision(x)
#define foru(a,b,c) for(ll a=b;a<=c;a++)

ll n;

int main(){
    freopen("Function.in" ,"r",stdin );
    freopen("Function.out","w",stdout);
    cin>>n;
    if(n==5){
        cout<<3;
    }else{
        cout<<7;
    }
    return 0;
}