結果

問題 No.202 1円玉投げ
ユーザー kmjpkmjp
提出日時 2015-05-03 23:25:53
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 1,015 bytes
コンパイル時間 1,694 ms
コンパイル使用メモリ 165,608 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-12-22 06:00:13
合計ジャッジ時間 58,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,289 ms
14,336 KB
testcase_01 AC 3,087 ms
8,704 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 124 ms
5,248 KB
testcase_06 AC 2,691 ms
7,424 KB
testcase_07 AC 3,101 ms
7,808 KB
testcase_08 AC 3,082 ms
7,936 KB
testcase_09 AC 1,645 ms
5,888 KB
testcase_10 AC 578 ms
5,248 KB
testcase_11 AC 1,278 ms
5,632 KB
testcase_12 AC 1,327 ms
5,632 KB
testcase_13 AC 692 ms
5,248 KB
testcase_14 AC 154 ms
5,248 KB
testcase_15 AC 1,550 ms
5,888 KB
testcase_16 TLE -
testcase_17 AC 2,749 ms
8,832 KB
testcase_18 AC 2,758 ms
8,832 KB
testcase_19 AC 1,443 ms
5,760 KB
testcase_20 AC 2,472 ms
6,912 KB
testcase_21 AC 1,445 ms
5,632 KB
testcase_22 AC 19 ms
5,248 KB
testcase_23 AC 32 ms
5,248 KB
testcase_24 AC 13 ms
5,248 KB
testcase_25 AC 17 ms
5,248 KB
testcase_26 AC 19 ms
5,248 KB
testcase_27 AC 21 ms
5,248 KB
testcase_28 AC 12 ms
5,248 KB
testcase_29 AC 14 ms
5,248 KB
testcase_30 AC 27 ms
5,248 KB
testcase_31 AC 7 ms
5,248 KB
testcase_32 AC 20 ms
5,248 KB
testcase_33 AC 20 ms
5,248 KB
testcase_34 AC 20 ms
5,248 KB
testcase_35 AC 2,692 ms
8,704 KB
testcase_36 AC 3,261 ms
8,704 KB
testcase_37 AC 3,540 ms
8,192 KB
testcase_38 AC 2,704 ms
8,832 KB
testcase_39 AC 5 ms
5,248 KB
testcase_40 AC 5 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<to;x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
int X[101000],Y[101000];

set<pair<int,int> > S;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) {
		cin>>X[i]>>Y[i];
		int ok=1;
		for(x=X[i]-21;x<=X[i]+21;x++) 
		for(y=Y[i]-21;y<=Y[i]+21;y++) if((x-X[i])*(x-X[i])+(y-Y[i])*(y-Y[i])<400 && S.count(make_pair(x,y))) ok=0;
		if(ok) S.insert(make_pair(X[i],Y[i]));
	}
	cout<<S.size()<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0