結果

問題 No.202 1円玉投げ
ユーザー なおなお
提出日時 2015-05-03 23:51:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 819 ms / 5,000 ms
コード長 795 bytes
コンパイル時間 1,514 ms
コンパイル使用メモリ 157,696 KB
実行使用メモリ 316,800 KB
最終ジャッジ日時 2024-12-22 06:34:00
合計ジャッジ時間 11,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
7,808 KB
testcase_01 AC 819 ms
316,800 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 46 ms
26,240 KB
testcase_06 AC 575 ms
214,272 KB
testcase_07 AC 633 ms
229,504 KB
testcase_08 AC 641 ms
230,784 KB
testcase_09 AC 358 ms
157,824 KB
testcase_10 AC 153 ms
79,744 KB
testcase_11 AC 307 ms
136,960 KB
testcase_12 AC 298 ms
139,264 KB
testcase_13 AC 168 ms
87,040 KB
testcase_14 AC 51 ms
30,208 KB
testcase_15 AC 343 ms
154,368 KB
testcase_16 AC 269 ms
9,984 KB
testcase_17 AC 254 ms
8,064 KB
testcase_18 AC 254 ms
8,064 KB
testcase_19 AC 323 ms
147,072 KB
testcase_20 AC 505 ms
201,216 KB
testcase_21 AC 322 ms
146,176 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 4 ms
5,248 KB
testcase_26 AC 10 ms
7,296 KB
testcase_27 AC 9 ms
7,296 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 4 ms
5,248 KB
testcase_30 AC 10 ms
7,296 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 11 ms
7,168 KB
testcase_33 AC 6 ms
5,248 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 AC 255 ms
9,216 KB
testcase_36 AC 262 ms
5,632 KB
testcase_37 AC 710 ms
238,976 KB
testcase_38 AC 281 ms
9,216 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))
#define FOR(i, f, t)        for(int(i)=(f);(i)<(t);(++i))
const int MOD = int(1e9+9);

bool f[22222][22222];
int c = 0;

int main(){
    int n;
    cin >> n;
    REP(i,n){
        int xx,yy;
        cin >> xx >> yy;
        bool b = true;
        for(int y = -19; y <= 19; y++){
            for(int x = -19; x <= 19; x++){
                int mx = xx + x, my = yy + y;
                if(mx < 0 || mx > 20000 || my < 0 || my > 20000) continue;
                if(f[my][mx] && (mx-xx)*(mx-xx)+(my-yy)*(my-yy) < 400){
                    b = false;
                }
            }
        }
        if(b) f[yy][xx] = true, c++;
    }
    cout << c << endl;
    return 0;
}
0