結果

問題 No.202 1円玉投げ
ユーザー cielciel
提出日時 2015-05-03 23:50:22
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,220 ms / 5,000 ms
コード長 413 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 42,240 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-06-01 19:07:36
合計ジャッジ時間 12,268 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 550 ms
7,808 KB
testcase_01 AC 160 ms
7,680 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 227 ms
6,528 KB
testcase_07 AC 281 ms
7,040 KB
testcase_08 AC 286 ms
7,040 KB
testcase_09 AC 98 ms
5,504 KB
testcase_10 AC 25 ms
5,376 KB
testcase_11 AC 70 ms
5,376 KB
testcase_12 AC 73 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 94 ms
5,376 KB
testcase_16 AC 100 ms
7,808 KB
testcase_17 AC 1,323 ms
7,808 KB
testcase_18 AC 1,304 ms
7,808 KB
testcase_19 AC 85 ms
5,376 KB
testcase_20 AC 187 ms
6,144 KB
testcase_21 AC 82 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2,220 ms
7,808 KB
testcase_36 AC 194 ms
7,808 KB
testcase_37 AC 328 ms
7,168 KB
testcase_38 AC 2,201 ms
7,808 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:19:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘std::set<std::pair<int, int> >::size_type’ {aka ‘long unsigned int’} [-Wformat=]
   19 |         printf("%d\n",se.size());
      |                 ~^    ~~~~~~~~~
      |                  |           |
      |                  int         std::set<std::pair<int, int> >::size_type {aka long unsigned int}
      |                 %ld
main.cpp:9:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         for(scanf("%d",&N);N--;){
      |             ~~~~~^~~~~~~~~
main.cpp:11:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |                 scanf("%d%d",&x,&y);
      |                 ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <set>
#include <cstdio>
using namespace std;
typedef pair<int,int> pii;

int main(){
	set<pii>se;
	int N;
	for(scanf("%d",&N);N--;){
		int x,y;
		scanf("%d%d",&x,&y);
		pii A={x-20,0},B={x+20,1<<30};
		auto a=se.lower_bound(A),b=se.upper_bound(B);
		for(;a!=b;++a){
			if((a->first-x)*(a->first-x) + (a->second-y)*(a->second-y) < 400)break;
		}
		if(a==b)se.insert({x,y});
	}
	printf("%d\n",se.size());
}
0