結果

問題 No.202 1円玉投げ
ユーザー face4face4
提出日時 2018-11-15 12:27:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 876 ms / 5,000 ms
コード長 665 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 63,212 KB
実行使用メモリ 320,052 KB
最終ジャッジ日時 2023-08-23 23:56:37
合計ジャッジ時間 11,910 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
7,736 KB
testcase_01 AC 876 ms
320,052 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 51 ms
26,328 KB
testcase_06 AC 622 ms
209,796 KB
testcase_07 AC 694 ms
224,500 KB
testcase_08 AC 721 ms
225,296 KB
testcase_09 AC 401 ms
155,496 KB
testcase_10 AC 176 ms
79,300 KB
testcase_11 AC 329 ms
134,884 KB
testcase_12 AC 341 ms
137,924 KB
testcase_13 AC 192 ms
86,388 KB
testcase_14 AC 60 ms
30,092 KB
testcase_15 AC 384 ms
151,620 KB
testcase_16 AC 346 ms
8,288 KB
testcase_17 AC 363 ms
9,984 KB
testcase_18 AC 354 ms
10,068 KB
testcase_19 AC 364 ms
145,088 KB
testcase_20 AC 573 ms
197,528 KB
testcase_21 AC 368 ms
144,120 KB
testcase_22 AC 10 ms
7,328 KB
testcase_23 AC 10 ms
7,332 KB
testcase_24 AC 5 ms
4,380 KB
testcase_25 AC 4 ms
4,380 KB
testcase_26 AC 3 ms
4,376 KB
testcase_27 AC 3 ms
4,380 KB
testcase_28 AC 3 ms
4,380 KB
testcase_29 AC 4 ms
4,376 KB
testcase_30 AC 11 ms
7,336 KB
testcase_31 AC 5 ms
4,376 KB
testcase_32 AC 12 ms
7,324 KB
testcase_33 AC 7 ms
5,108 KB
testcase_34 AC 6 ms
4,380 KB
testcase_35 AC 352 ms
5,748 KB
testcase_36 AC 361 ms
9,340 KB
testcase_37 AC 748 ms
232,820 KB
testcase_38 AC 352 ms
5,772 KB
testcase_39 AC 4 ms
4,376 KB
testcase_40 AC 3 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

// MLE?
static bool d[20001][20001] = {};

int main(){
    int n;
    cin >> n;

    int x, y, cnt = 0;

    for(int i = 0; i < n; i++){
        cin >> x >> y;
        bool judge = true;
        // 4 x 10^7
        for(int j = max(0, x-20); j <= min(20000, x+20); j++){
            for(int k = max(0, y-20); k <= min(20000, y+20); k++){
               if(d[j][k] && (j-x)*(j-x)+(k-y)*(k-y) < 400){
                   judge = false;
                   break;
               }
            }
        }

        if(judge){
            cnt++;
            d[x][y] = true;
        }
    }

    cout << cnt << endl;

    return 0;
}
0