結果

問題 No.202 1円玉投げ
ユーザー latte0119latte0119
提出日時 2015-05-04 00:28:25
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 717 bytes
コンパイル時間 1,345 ms
コンパイル使用メモリ 149,824 KB
実行使用メモリ 9,268 KB
最終ジャッジ日時 2023-08-23 21:55:37
合計ジャッジ時間 4,699 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
9,136 KB
testcase_01 AC 92 ms
9,104 KB
testcase_02 AC 2 ms
4,572 KB
testcase_03 AC 2 ms
4,420 KB
testcase_04 AC 2 ms
4,460 KB
testcase_05 AC 6 ms
4,704 KB
testcase_06 AC 107 ms
7,904 KB
testcase_07 WA -
testcase_08 AC 126 ms
8,412 KB
testcase_09 AC 60 ms
6,584 KB
testcase_10 AC 20 ms
5,448 KB
testcase_11 AC 46 ms
6,328 KB
testcase_12 AC 48 ms
6,292 KB
testcase_13 AC 23 ms
5,544 KB
testcase_14 AC 6 ms
4,776 KB
testcase_15 AC 58 ms
6,536 KB
testcase_16 AC 45 ms
9,020 KB
testcase_17 AC 56 ms
9,024 KB
testcase_18 AC 56 ms
9,268 KB
testcase_19 AC 53 ms
6,632 KB
testcase_20 AC 95 ms
7,580 KB
testcase_21 AC 52 ms
6,508 KB
testcase_22 AC 3 ms
4,484 KB
testcase_23 AC 3 ms
4,384 KB
testcase_24 AC 3 ms
4,424 KB
testcase_25 WA -
testcase_26 AC 3 ms
4,472 KB
testcase_27 AC 3 ms
4,408 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 3 ms
4,492 KB
testcase_31 AC 3 ms
4,564 KB
testcase_32 AC 3 ms
4,568 KB
testcase_33 AC 3 ms
4,560 KB
testcase_34 AC 3 ms
4,496 KB
testcase_35 AC 60 ms
9,112 KB
testcase_36 AC 55 ms
9,088 KB
testcase_37 AC 142 ms
8,512 KB
testcase_38 AC 60 ms
9,020 KB
testcase_39 AC 3 ms
4,540 KB
testcase_40 AC 3 ms
4,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int N;
set<int>S[20001];
int main(){
    scanf("%d",&N);
    for(int _=0;_<N;_++){
        int x,y;
        scanf("%d%d",&x,&y);
        bool flag=true;
        for(int i=max(x-20,0);i<min(20000,x+21)&&flag;i++){
            set<int>::iterator it;
            it=S[i].lower_bound(y-20);
            for(;it!=S[i].end();it++){
                if(*it>y+20)break;
                if(hypot(i-x,*it-y)<20.0){
                    flag=false;
                    break;
                }
            }
        }

        if(flag){
            S[x].insert(y);
        }
    }

    int ans=0;
    for(int i=0;i<=20000;i++)ans+=S[i].size();
    printf("%d\n",ans);

    return 0;
}
0