結果

問題 No.202 1円玉投げ
ユーザー Lay_ecLay_ec
提出日時 2015-05-04 00:51:47
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 917 bytes
コンパイル時間 1,083 ms
コンパイル使用メモリ 95,940 KB
実行使用メモリ 1,389,440 KB
最終ジャッジ日時 2024-12-22 07:58:41
合計ジャッジ時間 109,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 AC 33 ms
10,496 KB
testcase_03 MLE -
testcase_04 AC 3 ms
6,692 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 254 ms
50,944 KB
testcase_23 AC 347 ms
50,944 KB
testcase_24 AC 35 ms
5,760 KB
testcase_25 AC 108 ms
5,888 KB
testcase_26 AC 279 ms
50,944 KB
testcase_27 AC 314 ms
50,944 KB
testcase_28 AC 72 ms
5,888 KB
testcase_29 AC 63 ms
5,760 KB
testcase_30 AC 282 ms
62,208 KB
testcase_31 AC 39 ms
5,120 KB
testcase_32 AC 311 ms
81,280 KB
testcase_33 AC 159 ms
32,256 KB
testcase_34 AC 205 ms
27,520 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 MLE -
testcase_38 TLE -
testcase_39 AC 62 ms
17,024 KB
testcase_40 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <functional>
#include <set>
#include <sstream>
#include <map>
#include <queue>
#include <stack>

using namespace std;


int main()
{
	
	map<int,vector<int> > t;
	for(int i=-19;i<=19;i++){
		for(int j=-19;j<=19;j++){
			if(i*i+j*j<400) t[i].push_back(j);
		}
	}
	
	map<pair<int,int>,bool > coin;

	int n;
	cin>>n;
	long res=0;
	for(int i=0;i<n;i++){
		int x,y;
		cin>>x>>y;
		
		bool ok=true;
		for(int dx=-19;dx<=19 && ok;dx++){
			for(int j=0;j<t[dx].size() && ok;j++){
				int nx=x+dx,ny=y+t[dx][j];
				//cout<<nx<<" "<<ny<<endl;
				if(coin[make_pair(nx,ny)]==false) continue;
				//cout<<"exist:"<<nx<<" "<<ny<<endl;
				if(dx*dx+t[dx][j]*t[dx][j]<400)ok=false; 
			}
		}
		if(ok){res++; coin[make_pair(x,y)]=true;}
		
	}
	
	cout<<res<<endl;

	return 0;
}
0