记录编号 408930 评测结果 AAAAAAAAAA
题目名称 [ZJOI 2009]取石子游戏 最终得分 100
用户昵称 Gravatarsxysxy 是否通过 通过
代码语言 C++ 运行时间 0.010 s
提交时间 2017-05-26 10:50:55 内存使用 0.29 MiB
显示代码纯文本
#include <stdio.h>
#include <stdlib.h>
int main(){
  freopen("zjoi09stone.in", "r", stdin);
  freopen("zjoi09stone.out", "w", stdout);
  int T; scanf("%d", &T);
  while(T--){
    int n; scanf("%d", &n);
    if(n == 1){
      int t; scanf("%d", &t);
      puts("1");
    }else{
      int a, b; scanf("%d", &a);
      for(int i = 2, x; i <= n-1; i++)scanf("%d", &x);
      scanf("%d", &b);
      puts(abs(a-b)<=1? "0":"1");
    }
  }
  return 0;
}