結果

問題 No.202 1円玉投げ
ユーザー furafura
提出日時 2020-06-08 09:17:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 715 ms / 5,000 ms
コード長 484 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 201,140 KB
実行使用メモリ 303,744 KB
最終ジャッジ日時 2024-06-01 21:38:45
合計ジャッジ時間 10,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
8,064 KB
testcase_01 AC 715 ms
303,744 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 41 ms
26,496 KB
testcase_06 AC 511 ms
209,280 KB
testcase_07 AC 582 ms
224,384 KB
testcase_08 AC 569 ms
225,280 KB
testcase_09 AC 321 ms
155,776 KB
testcase_10 AC 132 ms
79,360 KB
testcase_11 AC 268 ms
135,552 KB
testcase_12 AC 272 ms
137,984 KB
testcase_13 AC 147 ms
86,656 KB
testcase_14 AC 44 ms
30,336 KB
testcase_15 AC 300 ms
152,192 KB
testcase_16 AC 207 ms
10,112 KB
testcase_17 AC 197 ms
8,576 KB
testcase_18 AC 198 ms
8,448 KB
testcase_19 AC 298 ms
145,280 KB
testcase_20 AC 454 ms
197,120 KB
testcase_21 AC 285 ms
144,640 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 9 ms
7,552 KB
testcase_27 AC 9 ms
7,552 KB
testcase_28 AC 4 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 9 ms
7,552 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 10 ms
7,552 KB
testcase_33 AC 5 ms
6,940 KB
testcase_34 AC 4 ms
6,940 KB
testcase_35 AC 197 ms
9,600 KB
testcase_36 AC 191 ms
6,940 KB
testcase_37 AC 611 ms
233,728 KB
testcase_38 AC 194 ms
9,472 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n; scanf("%d",&n);

	int ans=0;
	static bool f[20001][20001];
	rep(i,n){
		int x,y; scanf("%d%d",&x,&y);
		bool ok=true;
		for(int y2=max(y-20,0);y2<=min(y+20,20000);y2++){
			for(int x2=max(x-20,0);x2<=min(x+20,20000);x2++){
				if(f[y2][x2] && (x-x2)*(x-x2)+(y-y2)*(y-y2)<400){
					ok=false;
				}
			}
		}
		if(ok) f[y][x]=true, ans++;
	}
	printf("%d\n",ans);

	return 0;
}
0