結果

問題 No.202 1円玉投げ
ユーザー latte0119latte0119
提出日時 2015-05-04 00:33:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 717 bytes
コンパイル時間 1,742 ms
コンパイル使用メモリ 164,188 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-06-01 19:29:12
合計ジャッジ時間 4,301 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
9,344 KB
testcase_01 AC 84 ms
9,216 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 103 ms
7,936 KB
testcase_07 AC 120 ms
8,448 KB
testcase_08 AC 121 ms
8,320 KB
testcase_09 AC 58 ms
6,912 KB
testcase_10 AC 20 ms
5,632 KB
testcase_11 AC 45 ms
6,400 KB
testcase_12 AC 47 ms
6,400 KB
testcase_13 AC 23 ms
5,632 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 55 ms
6,912 KB
testcase_16 AC 44 ms
9,344 KB
testcase_17 AC 53 ms
9,216 KB
testcase_18 AC 54 ms
9,344 KB
testcase_19 AC 51 ms
6,656 KB
testcase_20 AC 90 ms
7,808 KB
testcase_21 AC 50 ms
6,528 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 59 ms
9,344 KB
testcase_36 AC 53 ms
9,216 KB
testcase_37 AC 130 ms
8,576 KB
testcase_38 AC 59 ms
9,344 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d%d",&x,&y);
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

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(20001,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