結果

問題 No.202 1円玉投げ
ユーザー 古寺いろは古寺いろは
提出日時 2015-05-03 23:29:36
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 613 bytes
コンパイル時間 1,555 ms
コンパイル使用メモリ 164,192 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-12-22 06:04:39
合計ジャッジ時間 63,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3,684 ms
13,952 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 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
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 AC 26 ms
5,248 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 TLE -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;


int main() {
	int N;
	cin >> N;
	vector<unsigned int> x(N), y(N);
	for (int i = 0; i < N; i++)
	{
		cin >> x[i] >> y[i];
	}
	set<unsigned int> s;
	int ans = 0;
	for (int i = 0; i < N; i++)
	{
		bool flag = true;
		for (int dy = -20; dy <= 20 && flag; dy++)
		{
			for (int dx = -20; dx <= 20 && flag; dx++)
			{
				if (dy*dy + dx*dy>400) continue;
				int Y = y[i] + dy;
				int X = x[i] + dx;
				if (s.count(Y * 20001 + X)){
					flag = false;
					break;
				}
			}
		}
		if (flag){
			ans++;
			s.insert(y[i] * 20001 + x[i]);
		}
	}
	cout << ans << endl;
	
} 
0