結果

問題 No.202 1円玉投げ
ユーザー ttkkggwwttkkggww
提出日時 2022-09-20 05:51:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 933 bytes
コンパイル時間 4,433 ms
コンパイル使用メモリ 265,204 KB
実行使用メモリ 321,408 KB
最終ジャッジ日時 2024-12-22 12:14:25
合計ジャッジ時間 25,071 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
9,344 KB
testcase_01 AC 1,136 ms
321,408 KB
testcase_02 AC 222 ms
5,248 KB
testcase_03 AC 222 ms
5,248 KB
testcase_04 AC 222 ms
5,248 KB
testcase_05 AC 268 ms
26,752 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 414 ms
89,600 KB
testcase_14 AC 275 ms
30,464 KB
testcase_15 WA -
testcase_16 AC 529 ms
9,600 KB
testcase_17 AC 538 ms
11,520 KB
testcase_18 AC 541 ms
11,392 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 229 ms
7,424 KB
testcase_23 AC 229 ms
7,552 KB
testcase_24 AC 228 ms
7,552 KB
testcase_25 AC 229 ms
7,552 KB
testcase_26 AC 224 ms
5,248 KB
testcase_27 AC 225 ms
5,248 KB
testcase_28 AC 224 ms
5,248 KB
testcase_29 AC 225 ms
5,248 KB
testcase_30 AC 229 ms
7,424 KB
testcase_31 WA -
testcase_32 AC 230 ms
7,424 KB
testcase_33 WA -
testcase_34 AC 226 ms
5,248 KB
testcase_35 AC 534 ms
7,168 KB
testcase_36 AC 549 ms
10,880 KB
testcase_37 WA -
testcase_38 AC 533 ms
7,168 KB
testcase_39 AC 224 ms
5,248 KB
testcase_40 AC 223 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;
bool 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++){
		bool canon = true;
		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 = false;
					}
				}
			}
		}
		is[x[i]][y[i]] = canon;
	}
	int ans = 0;
	for(int i = 0;i<20001;i++){
		for(int j = 0;j<20001;j++){
			ans += is[i][j];
		}
	}
	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