记录编号 |
252320 |
评测结果 |
AAAAAAAAAA |
题目名称 |
膜拜神犇 |
最终得分 |
100 |
用户昵称 |
Sky_miner |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.232 s |
提交时间 |
2016-04-20 08:19:58 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<cstdio>
using namespace std;
struct Point{
int x,y;
Point(int a=0,int b=0): x(a),y(b){};
};
int cross(const Point &a,const Point &b){
return a.x*b.y - a.y*b.x ;
}
int main(){
freopen("trioxorz.in","r",stdin);
freopen("trioxorz.out","w",stdout);
int n;scanf("%d",&n);
Point a,b,c;
int ans = 0;
while(n--){
scanf("%d%d%d%d%d%d",&a.x,&a.y,&b.x,&b.y,&c.x,&c.y);
int t1 = cross(a,b),
t2 = cross(b,c),
t3 = cross(a,c);
if(t1<0 && t2<0 && t3>0) ans++;
else if(t1>0 && t2>0 && t3<0) ans++;
}
printf("%d",ans);
}