結果

問題 No.202 1円玉投げ
ユーザー tottoripapertottoripaper
提出日時 2015-05-03 23:45:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 869 ms / 5,000 ms
コード長 1,084 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 47,912 KB
実行使用メモリ 52,736 KB
最終ジャッジ日時 2024-06-01 19:06:48
合計ジャッジ時間 13,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
52,736 KB
testcase_01 AC 869 ms
52,736 KB
testcase_02 AC 35 ms
52,608 KB
testcase_03 AC 35 ms
52,736 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 79 ms
52,736 KB
testcase_06 AC 652 ms
52,736 KB
testcase_07 AC 697 ms
52,608 KB
testcase_08 AC 716 ms
52,736 KB
testcase_09 AC 425 ms
52,736 KB
testcase_10 AC 201 ms
52,608 KB
testcase_11 AC 356 ms
52,736 KB
testcase_12 AC 365 ms
52,608 KB
testcase_13 AC 225 ms
52,736 KB
testcase_14 AC 91 ms
52,608 KB
testcase_15 AC 410 ms
52,736 KB
testcase_16 AC 509 ms
52,608 KB
testcase_17 AC 505 ms
52,608 KB
testcase_18 AC 498 ms
52,736 KB
testcase_19 AC 392 ms
52,736 KB
testcase_20 AC 597 ms
52,736 KB
testcase_21 AC 388 ms
52,736 KB
testcase_22 AC 38 ms
52,736 KB
testcase_23 AC 40 ms
52,608 KB
testcase_24 AC 39 ms
52,608 KB
testcase_25 AC 38 ms
52,736 KB
testcase_26 AC 40 ms
52,736 KB
testcase_27 AC 38 ms
52,736 KB
testcase_28 AC 37 ms
52,608 KB
testcase_29 AC 37 ms
52,736 KB
testcase_30 AC 40 ms
52,608 KB
testcase_31 AC 37 ms
52,608 KB
testcase_32 AC 43 ms
52,736 KB
testcase_33 AC 39 ms
52,608 KB
testcase_34 AC 40 ms
52,608 KB
testcase_35 AC 498 ms
52,608 KB
testcase_36 AC 518 ms
52,736 KB
testcase_37 AC 803 ms
52,736 KB
testcase_38 AC 515 ms
52,736 KB
testcase_39 AC 37 ms
52,736 KB
testcase_40 AC 35 ms
52,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:21:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |     scanf("%d", &N);
      |     ~~~~~^~~~~~~~~~
main.cpp:26:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   26 |         scanf("%d %d", &x, &y);
      |         ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

// YukiCoderなら通る

#include <algorithm>
#include <cstdio>
#include <vector>

int N;
std::vector<std::vector<bool>> hasCircle;

int distance(int x1, int y1, int x2, int y2){
    int dx = x1-x2, dy = y1-y2;
    return dx * dx + dy * dy;
}

int main(){
    hasCircle.resize(20001);
    for(int i=0;i<=20000;i++){
        hasCircle[i].resize(20001);
    }
    
    scanf("%d", &N);

    int n = 0;
    for(int i=0;i<N;i++){
        int x, y;
        scanf("%d %d", &x, &y);

        bool flag = false;
        for(int j=-20;j<=20;j++){
            for(int k=-20;k<=20;k++){
                int x2 = x + k, y2 = y + j;
                if(x2 < 0 || x2 > 20000 || y2 < 0 || y2 > 20000){
                    continue;
                }
                if(!hasCircle[y2][x2]){continue;}
                if(distance(x, y, x2, y2) < 400){
                    flag = true;
                    break;
                }
            }
            if(flag){break;}
        }

        if(!flag){
            hasCircle[y][x] = true;
            n += 1;
        }
    }

    printf("%d\n", n);
}
0