记录编号 | 348797 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [USACO Oct08] 轮子的旋转 | 最终得分 | 100 | ||
用户昵称 | Zwoi_John Price | 是否通过 | 通过 | ||
代码语言 | C | 运行时间 | 0.007 s | ||
提交时间 | 2016-11-14 16:39:40 | 内存使用 | 0.29 MiB | ||
#include<stdio.h> int main() { int a,b,c,i,d,n; freopen("rotation.in","r",stdin); freopen("rotation.out","w",stdout); scanf("%d",&n); scanf("%d %d %d",&a,&b,&c); if (c==1) d=1; else d=0; for (i=1;i<n-1;i++) { scanf("%d %d %d",&a,&b,&c); if (c==1) d=!d; else continue; } printf("%d",d); fclose(stdin); fclose(stdout); return 0; }