結果

問題 No.202 1円玉投げ
ユーザー furafura
提出日時 2020-06-08 09:13:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 428 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 206,744 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-06-01 21:39:26
合計ジャッジ時間 36,537 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,382 ms
8,320 KB
testcase_01 AC 3,195 ms
8,192 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 142 ms
6,944 KB
testcase_06 AC 2,928 ms
7,040 KB
testcase_07 AC 3,385 ms
7,424 KB
testcase_08 AC 3,390 ms
7,424 KB
testcase_09 AC 1,726 ms
6,944 KB
testcase_10 AC 637 ms
6,940 KB
testcase_11 AC 1,401 ms
6,940 KB
testcase_12 AC 1,407 ms
6,940 KB
testcase_13 AC 704 ms
6,940 KB
testcase_14 AC 167 ms
6,940 KB
testcase_15 AC 1,632 ms
6,940 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

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);

	set<pair<int,int>> S;
	rep(i,n){
		int x,y; scanf("%d%d",&x,&y);
		bool ok=true;
		for(int y2=y-20;y2<=y+20;y2++) for(int x2=x-20;x2<=x+20;x2++) {
			if((x-x2)*(x-x2)+(y-y2)*(y-y2)<400 && S.count({x2,y2})>0){
				ok=false;
			}
		}
		if(ok) S.emplace(x,y);
	}
	printf("%ld\n",S.size());

	return 0;
}
0