Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
6541 | 18级张钰晨 | 2021北京队选拔模拟赛1-C | C++ | 解答错误 | 0 | 0 MS | 256 KB | 426 | 2021-04-03 11:55:15 |
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn=1e3+5,mod=9973,inf=0x3f3f3f3f; inline int read(){ int x=0,f=1,ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=(x<<3)+(x<<1)+ch-48;ch=getchar();} return x*f; } int n,a[maxn]; int main(){ n=read(); if(n==2)cout<<8<<endl; else cout<<0<<endl; return 0; }