結果

問題 No.202 1円玉投げ
ユーザー chocoruskchocorusk
提出日時 2018-12-14 10:25:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 654 ms / 5,000 ms
コード長 740 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 100,016 KB
実行使用メモリ 395,616 KB
最終ジャッジ日時 2024-12-22 11:34:32
合計ジャッジ時間 12,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
112,740 KB
testcase_01 AC 528 ms
395,604 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 338 ms
369,024 KB
testcase_06 AC 583 ms
395,572 KB
testcase_07 AC 620 ms
395,492 KB
testcase_08 AC 605 ms
395,616 KB
testcase_09 AC 484 ms
395,356 KB
testcase_10 AC 412 ms
395,204 KB
testcase_11 AC 460 ms
395,460 KB
testcase_12 AC 454 ms
395,328 KB
testcase_13 AC 404 ms
395,368 KB
testcase_14 AC 342 ms
377,116 KB
testcase_15 AC 500 ms
395,552 KB
testcase_16 AC 286 ms
201,548 KB
testcase_17 AC 231 ms
59,772 KB
testcase_18 AC 239 ms
58,988 KB
testcase_19 AC 472 ms
395,604 KB
testcase_20 AC 571 ms
395,488 KB
testcase_21 AC 492 ms
395,324 KB
testcase_22 AC 71 ms
167,020 KB
testcase_23 AC 71 ms
189,920 KB
testcase_24 AC 6 ms
22,188 KB
testcase_25 AC 6 ms
20,676 KB
testcase_26 AC 4 ms
6,820 KB
testcase_27 AC 4 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 62 ms
180,544 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 128 ms
204,776 KB
testcase_33 AC 8 ms
13,384 KB
testcase_34 AC 8 ms
7,424 KB
testcase_35 AC 224 ms
43,988 KB
testcase_36 AC 326 ms
238,200 KB
testcase_37 AC 654 ms
395,568 KB
testcase_38 AC 217 ms
43,692 KB
testcase_39 AC 21 ms
63,436 KB
testcase_40 AC 17 ms
40,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
bool dame[20041][20041];
int main()
{
	vector<P> r;
	for(int i=-20; i<=20; i++){
		for(int j=-20; j<=20; j++){
			if(i*i+j*j<400) r.push_back({i, j});
		}
	}
	int n;
	cin>>n;
	int ans=0;
	for(int i=0; i<n; i++){
		int x, y; cin>>x>>y;
		x+=20, y+=20;
		if(dame[x][y]) continue;
		ans++;
		for(auto p:r) dame[x+p.first][y+p.second]=1;
	}
	cout<<ans<<endl;
	return 0;
}
0