結果

問題 No.202 1円玉投げ
ユーザー TwizzTwizz
提出日時 2017-06-06 20:01:36
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 699 bytes
コンパイル時間 1,363 ms
コンパイル使用メモリ 159,540 KB
実行使用メモリ 10,916 KB
最終ジャッジ日時 2024-12-22 10:57:55
合計ジャッジ時間 107,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 1 ms
10,624 KB
testcase_03 AC 2 ms
9,088 KB
testcase_04 AC 2 ms
10,624 KB
testcase_05 AC 49 ms
9,088 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 3,810 ms
10,624 KB
testcase_10 AC 624 ms
9,344 KB
testcase_11 AC 2,521 ms
10,624 KB
testcase_12 AC 2,681 ms
9,088 KB
testcase_13 AC 792 ms
10,624 KB
testcase_14 AC 67 ms
6,816 KB
testcase_15 AC 3,550 ms
6,816 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 3,087 ms
5,248 KB
testcase_20 TLE -
testcase_21 AC 3,049 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 4 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include"bits/stdc++.h"

//#include<bits/stdc++.h>
using namespace std;
#define print(x) cout<<x<<endl;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define REP(i,a) for(int i=0;i<a;i++)
typedef long long ll;
typedef pair<int, int> PI;
typedef pair<int, PI> V;
typedef vector<int> VE;
const ll mod = 100000000000;

int n, x[100002], y[100002];
bool now[100002];

int main() {
	cin >> n;
	bool flag = 1;
	REP(i, n)cin >> x[i] >> y[i];
	REP(i, n) {
		flag = 1;
		rep(j, 0, i) {
			if (now[j] == 0)continue;
			ll dist = pow(x[i] - x[j], 2) + pow(y[j] - y[i], 2);
			if (dist < 400) {
				flag = 0;
			}
		}
		if (flag)now[i] = 1;
	}
	int count = 0;
	REP(i, n)if (now[i])count++;
	print(count);
	return 0;
}
0