結果

問題 No.202 1円玉投げ
ユーザー inaenomakiinaenomaki
提出日時 2015-05-04 00:36:13
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 979 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 60,020 KB
実行使用メモリ 66,840 KB
最終ジャッジ日時 2024-12-22 07:39:06
合計ジャッジ時間 111,731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

#include<vector>



bool checkhitcircle(int x1,int y1,int x2,int y2){
	if ((( x1 - x2)*(x1 - x2) +(y1 - y2)*(y1 - y2))<400){

		return true;

	}
	else{

		return false;
	}



}



int main(){
	int throw_num;

	std::cin >> throw_num;
	std::cin.ignore();

	bool deleted_coin_vec[100000] = { false };

	std::vector<int> x_vec;
	std::vector<int> y_vec;
	int x_tmp;
	int y_tmp;
	for (int i = 0; i < throw_num; i++){
		std::cin >> x_tmp >> y_tmp;
		x_vec.push_back(x_tmp);
		y_vec.push_back(y_tmp);
		std::cin.ignore();
	}

	for (int i = 0; i < throw_num; i++){
		for (int j = 0; j < throw_num; j++){
			if (checkhitcircle(x_vec[i], y_vec[i], x_vec[j], y_vec[j])){
				deleted_coin_vec[j] = true;

			}
		}
	}

	int leave_coin_num=0;
	int deleted_coin_num=0;

	for (int i = 0;i<100000;i++){
		if (deleted_coin_vec[i]==true){
			deleted_coin_num++;
		}
	
	}
	leave_coin_num = throw_num - deleted_coin_num;

	std::cout << leave_coin_num << std::endl;


	return 0;


}
0