记录编号 40663 评测结果 AAAAAAAAAA
题目名称 [暑假培训2012] 打乒乓球 最终得分 100
用户昵称 Gravatar王者自由 是否通过 通过
代码语言 C++ 运行时间 0.005 s
提交时间 2012-07-18 15:57:35 内存使用 0.29 MiB
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;
int t, n, s, x, y;
inline bool Good(int a, int b, int c) {
    return (a*a + b*b < c*c);
}
inline int Check(int a, int b) {
    if(Good(a-170, b-30, 5)) return 3;
    if(Good(a-100, b-30, 10)) return 2;
    if(Good(a-30, b-30, 20)) return 1;
    return 0;
}
int main() {
    freopen("table2.in", "r", stdin);
    freopen("table2.out", "w", stdout);
    scanf("%d", &t);
    while(t--) {
        scanf("%d", &n);
        s = 0;
        for(int i=0; i<n; i++) {
            scanf("%d %d", &x, &y);
            s += Check(x, y);
        }
        printf("%d\n", s);
    }
    return 0;
}