結果

問題 No.202 1円玉投げ
ユーザー ttkkggwwttkkggww
提出日時 2022-09-20 05:59:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,056 ms / 5,000 ms
コード長 951 bytes
コンパイル時間 5,169 ms
コンパイル使用メモリ 263,620 KB
実行使用メモリ 321,408 KB
最終ジャッジ日時 2024-12-22 12:15:44
合計ジャッジ時間 23,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 517 ms
9,216 KB
testcase_01 AC 1,056 ms
321,408 KB
testcase_02 AC 209 ms
6,820 KB
testcase_03 AC 209 ms
6,816 KB
testcase_04 AC 210 ms
6,820 KB
testcase_05 AC 241 ms
26,624 KB
testcase_06 AC 824 ms
211,072 KB
testcase_07 AC 882 ms
225,536 KB
testcase_08 AC 911 ms
226,688 KB
testcase_09 AC 588 ms
156,288 KB
testcase_10 AC 362 ms
79,684 KB
testcase_11 AC 523 ms
135,424 KB
testcase_12 AC 529 ms
138,368 KB
testcase_13 AC 381 ms
86,656 KB
testcase_14 AC 255 ms
30,208 KB
testcase_15 AC 578 ms
152,320 KB
testcase_16 AC 503 ms
9,600 KB
testcase_17 AC 523 ms
11,392 KB
testcase_18 AC 524 ms
11,392 KB
testcase_19 AC 559 ms
145,664 KB
testcase_20 AC 762 ms
198,656 KB
testcase_21 AC 551 ms
144,896 KB
testcase_22 AC 200 ms
7,552 KB
testcase_23 AC 202 ms
7,424 KB
testcase_24 AC 211 ms
6,820 KB
testcase_25 AC 210 ms
6,816 KB
testcase_26 AC 212 ms
6,820 KB
testcase_27 AC 213 ms
6,816 KB
testcase_28 AC 212 ms
6,816 KB
testcase_29 AC 212 ms
6,820 KB
testcase_30 AC 203 ms
7,552 KB
testcase_31 AC 212 ms
6,816 KB
testcase_32 AC 210 ms
7,552 KB
testcase_33 AC 213 ms
6,816 KB
testcase_34 AC 211 ms
6,816 KB
testcase_35 AC 518 ms
7,168 KB
testcase_36 AC 522 ms
10,880 KB
testcase_37 AC 937 ms
234,624 KB
testcase_38 AC 521 ms
7,168 KB
testcase_39 AC 208 ms
6,816 KB
testcase_40 AC 208 ms
6,816 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 = -30;i<30;i++){
		for(int j = -30;j<30;j++){
			if(dist20(i,j)){
				dx.push_back(i);
				dy.push_back(j);
			}
		}
	}
	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)
		is[x[i]][y[i]] = canon;
	}
	int ans = 0;
	for(int i = 0;i<20001;i++){
		for(int j = 0;j<20001;j++){
			if(is[i][j]){
				ans++;
			}
		}
	}
	cout<<ans<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n;
	x = y = vector<ll>(n);
	for(int i =0;i<n;i++){
		cin >> x[i] >> y[i];
	}
	solve();
}
0