結果

問題 No.202 1円玉投げ
ユーザー kmjpkmjp
提出日時 2015-05-03 23:27:05
言語 C++11
(gcc 13.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,021 bytes
コンパイル時間 2,166 ms
コンパイル使用メモリ 167,744 KB
実行使用メモリ 13,476 KB
最終ジャッジ日時 2024-12-22 06:01:15
合計ジャッジ時間 55,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,245 ms
8,832 KB
testcase_01 AC 3,067 ms
8,832 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 123 ms
6,816 KB
testcase_06 AC 2,654 ms
7,424 KB
testcase_07 AC 2,891 ms
7,808 KB
testcase_08 AC 2,977 ms
7,936 KB
testcase_09 AC 1,468 ms
6,816 KB
testcase_10 AC 543 ms
6,820 KB
testcase_11 AC 1,188 ms
6,816 KB
testcase_12 AC 1,243 ms
6,816 KB
testcase_13 AC 623 ms
6,816 KB
testcase_14 AC 158 ms
6,820 KB
testcase_15 AC 1,493 ms
6,820 KB
testcase_16 TLE -
testcase_17 AC 2,658 ms
8,832 KB
testcase_18 AC 2,593 ms
8,832 KB
testcase_19 AC 1,350 ms
6,816 KB
testcase_20 AC 2,283 ms
7,040 KB
testcase_21 AC 1,333 ms
6,816 KB
testcase_22 AC 19 ms
6,816 KB
testcase_23 AC 29 ms
6,816 KB
testcase_24 AC 5 ms
6,816 KB
testcase_25 AC 13 ms
6,816 KB
testcase_26 AC 20 ms
6,816 KB
testcase_27 AC 21 ms
6,816 KB
testcase_28 AC 7 ms
6,816 KB
testcase_29 AC 10 ms
6,816 KB
testcase_30 AC 26 ms
6,816 KB
testcase_31 AC 5 ms
6,816 KB
testcase_32 AC 19 ms
6,816 KB
testcase_33 AC 14 ms
6,820 KB
testcase_34 AC 19 ms
6,816 KB
testcase_35 AC 2,589 ms
8,832 KB
testcase_36 AC 3,117 ms
8,704 KB
testcase_37 AC 3,298 ms
8,192 KB
testcase_38 AC 2,615 ms
8,704 KB
testcase_39 AC 6 ms
6,816 KB
testcase_40 AC 3 ms
13,476 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]-20;x<=X[i]+20 && ok;x++) 
		for(y=Y[i]-20;y<=Y[i]+20;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