結果

問題 No.202 1円玉投げ
ユーザー ttkkggwwttkkggww
提出日時 2022-09-20 06:44:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 860 ms / 5,000 ms
コード長 890 bytes
コンパイル時間 4,632 ms
コンパイル使用メモリ 264,940 KB
実行使用メモリ 321,536 KB
最終ジャッジ日時 2024-12-22 12:13:52
合計ジャッジ時間 14,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
9,344 KB
testcase_01 AC 860 ms
321,536 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 50 ms
26,624 KB
testcase_06 AC 608 ms
211,200 KB
testcase_07 AC 686 ms
225,664 KB
testcase_08 AC 712 ms
226,816 KB
testcase_09 AC 397 ms
156,544 KB
testcase_10 AC 169 ms
79,872 KB
testcase_11 AC 324 ms
135,680 KB
testcase_12 AC 332 ms
138,496 KB
testcase_13 AC 185 ms
86,784 KB
testcase_14 AC 57 ms
30,336 KB
testcase_15 AC 381 ms
152,448 KB
testcase_16 AC 235 ms
9,856 KB
testcase_17 AC 265 ms
11,648 KB
testcase_18 AC 264 ms
11,520 KB
testcase_19 AC 353 ms
145,792 KB
testcase_20 AC 550 ms
199,040 KB
testcase_21 AC 349 ms
144,896 KB
testcase_22 AC 12 ms
7,552 KB
testcase_23 AC 11 ms
7,680 KB
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 4 ms
5,248 KB
testcase_30 AC 12 ms
7,680 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 13 ms
7,552 KB
testcase_33 AC 7 ms
5,248 KB
testcase_34 AC 5 ms
5,248 KB
testcase_35 AC 255 ms
7,296 KB
testcase_36 AC 281 ms
10,880 KB
testcase_37 AC 735 ms
234,880 KB
testcase_38 AC 258 ms
7,424 KB
testcase_39 AC 4 ms
5,248 KB
testcase_40 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
int n;
vector<ll> x,y;
char is[20001][20001];
vector<int> dx,dy;

bool dist20(int sx,int sy){
	return sx*sx+sy*sy<400;
}

void solve(){
	for(int i = -100;i<100;i++){
		for(int j = -100;j<100;j++){
			if(dist20(i,j)){
				dx.push_back(i);
				dy.push_back(j);
			}
		}
	}
	int ans = 0;
	for(int i = 0;i<n;i++){
		char canon = 1;
		for(int j = 0;j<dx.size();j++){
			int nx = x[i]+dx[j];
			int ny = y[i]+dy[j];
			if(0<=nx&&nx<20001){
				if(0<=ny&&ny<20001){
					if(is[nx][ny]){
						canon = 0;
					}
				}
			}
		}
		if(canon){
			//cout<<x[i]<<' '<<y[i]<<endl;
			ans++;
			is[x[i]][y[i]] = canon;
		}
	}
	cout<<ans<<endl;
}

signed main(){
	cin >> n;
	n = min(100000,n);
	x = y = vector<ll>(n);
	for(int i =0;i<n;i++){
		scanf("%lld %lld\n",&x[i],&y[i]);
	}
	solve();
}
0