結果

問題 No.202 1円玉投げ
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-10-04 18:27:29
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 413 ms / 5,000 ms
コード長 750 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 67,608 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-22 10:42:31
合計ジャッジ時間 5,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
5,248 KB
testcase_01 AC 106 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 7 ms
5,248 KB
testcase_06 AC 104 ms
5,248 KB
testcase_07 AC 115 ms
5,248 KB
testcase_08 AC 117 ms
5,248 KB
testcase_09 AC 59 ms
5,248 KB
testcase_10 AC 23 ms
5,248 KB
testcase_11 AC 47 ms
5,248 KB
testcase_12 AC 48 ms
5,248 KB
testcase_13 AC 25 ms
5,248 KB
testcase_14 AC 8 ms
5,248 KB
testcase_15 AC 57 ms
5,248 KB
testcase_16 AC 75 ms
5,248 KB
testcase_17 AC 273 ms
5,248 KB
testcase_18 AC 272 ms
5,248 KB
testcase_19 AC 53 ms
5,248 KB
testcase_20 AC 91 ms
5,248 KB
testcase_21 AC 52 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 413 ms
5,248 KB
testcase_36 AC 102 ms
5,248 KB
testcase_37 AC 129 ms
5,248 KB
testcase_38 AC 413 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>

using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
static const int mod = 1e9 + 7;

vector<int> center[20100];

int main(void){
	int n; cin >> n;
	int ans = 0;
	rep(i, n){
		int cx, cy; cin >> cx >> cy;
		int xl = max(0, cx - 20);
		int xr = cx + 20;
		bool flag = true;
		for (int nx = xl; nx <= xr; ++nx){
			for(auto ny : center[nx]){
				double len = sqrt((nx - cx) * (nx - cx) + (ny - cy) * (ny - cy));
        		// printf("len %f\n",len );
        		if(len < 20){
        			flag = false;
        			break;
        		}
			}
		}
		if(flag){
			ans++;
			center[cx].push_back(cy);
		}
	}

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