結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 612 ms
52,736 KB
testcase_01 AC 957 ms
52,608 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 88 ms
52,736 KB
testcase_06 AC 701 ms
52,736 KB
testcase_07 AC 938 ms
52,608 KB
testcase_08 AC 776 ms
52,608 KB
testcase_09 AC 455 ms
52,736 KB
testcase_10 AC 217 ms
52,736 KB
testcase_11 AC 384 ms
52,736 KB
testcase_12 AC 398 ms
52,736 KB
testcase_13 AC 242 ms
52,736 KB
testcase_14 AC 99 ms
52,608 KB
testcase_15 AC 449 ms
52,736 KB
testcase_16 AC 571 ms
52,736 KB
testcase_17 AC 552 ms
52,736 KB
testcase_18 AC 554 ms
52,608 KB
testcase_19 AC 419 ms
52,736 KB
testcase_20 AC 639 ms
52,736 KB
testcase_21 AC 422 ms
52,608 KB
testcase_22 AC 44 ms
52,736 KB
testcase_23 AC 42 ms
52,608 KB
testcase_24 AC 41 ms
52,736 KB
testcase_25 AC 40 ms
52,736 KB
testcase_26 AC 42 ms
52,736 KB
testcase_27 AC 43 ms
52,608 KB
testcase_28 AC 39 ms
52,736 KB
testcase_29 AC 41 ms
52,736 KB
testcase_30 AC 45 ms
52,736 KB
testcase_31 AC 40 ms
52,736 KB
testcase_32 AC 47 ms
52,736 KB
testcase_33 AC 41 ms
52,736 KB
testcase_34 AC 43 ms
52,608 KB
testcase_35 AC 554 ms
52,608 KB
testcase_36 AC 554 ms
52,608 KB
testcase_37 AC 824 ms
52,736 KB
testcase_38 AC 548 ms
52,608 KB
testcase_39 AC 40 ms
52,736 KB
testcase_40 AC 39 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