比赛 |
Asm_Def战记之透明计算网络 |
评测结果 |
WWWWWWWWWW |
题目名称 |
Asm_Def三角形 |
最终得分 |
0 |
用户昵称 |
Fmuckss |
运行时间 |
0.033 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2015-11-01 11:55:03 |
显示代码纯文本
#include<stdio.h>
#include<iostream>
#define mo 998244353
using namespace std;
typedef long long LL;
int n,m;
LL solve(){
int a=n-1,b=n;
if(!((b%2))) b=b/2;
else if(!(a%2)) a=a/2;
return ((a%mo)*b%mo)%mo;
}
void read(){
scanf("%d %d",&n,&m);
for(int i=1;i<=m;i++){
int a,b;
scanf("%d %d",&a,&b);
}
}
int main(){
freopen("tria.in","r",stdin);
freopen("tria.out","w",stdout);
read();
printf("%lld",solve()+1);
return 0;
}