結果

問題 No.202 1円玉投げ
ユーザー naimonon77naimonon77
提出日時 2016-02-15 15:13:11
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 965 ms / 5,000 ms
コード長 740 bytes
コンパイル時間 1,536 ms
コンパイル使用メモリ 158,576 KB
実行使用メモリ 400,128 KB
最終ジャッジ日時 2024-12-22 10:06:56
合計ジャッジ時間 13,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
13,824 KB
testcase_01 AC 965 ms
400,128 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 60 ms
26,752 KB
testcase_06 AC 720 ms
270,976 KB
testcase_07 AC 776 ms
297,216 KB
testcase_08 AC 786 ms
299,008 KB
testcase_09 AC 459 ms
184,960 KB
testcase_10 AC 199 ms
85,760 KB
testcase_11 AC 369 ms
156,160 KB
testcase_12 AC 374 ms
159,488 KB
testcase_13 AC 218 ms
93,952 KB
testcase_14 AC 70 ms
30,976 KB
testcase_15 AC 416 ms
179,712 KB
testcase_16 AC 340 ms
26,240 KB
testcase_17 AC 327 ms
14,080 KB
testcase_18 AC 331 ms
14,080 KB
testcase_19 AC 394 ms
169,984 KB
testcase_20 AC 628 ms
249,216 KB
testcase_21 AC 393 ms
168,832 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 6 ms
5,248 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 18 ms
7,424 KB
testcase_27 AC 19 ms
7,552 KB
testcase_28 AC 6 ms
5,248 KB
testcase_29 AC 6 ms
5,248 KB
testcase_30 AC 18 ms
7,296 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 19 ms
7,296 KB
testcase_33 AC 8 ms
5,248 KB
testcase_34 AC 5 ms
5,248 KB
testcase_35 AC 333 ms
15,104 KB
testcase_36 AC 324 ms
11,648 KB
testcase_37 AC 865 ms
314,624 KB
testcase_38 AC 336 ms
15,104 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:24:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   24 |         scanf("%d %d",&x,&y);
      |         ~~~~~^~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#include <string>
#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;

#define SQR(X) ((X)*(X))

int main() {
  int i,j,k;
  int N;
  static int itien[20020][20020] = {0};
  /*          y      x          */
  int sum = 0;
  cin >> N;
  rep(i,N) {
	int y,x;
	bool valid = true;
	scanf("%d %d",&x,&y);
	for(j=-19;j<20;j++) {
	  if(y+j < 0) continue;
	  for(k=-19;k<20;k++) {
		if(x+k < 0) continue;
		if(itien[y+j][x+k] == 0) continue;
		else if(400 > SQR(j) + SQR(k) ) valid = false;
	  }
	}
	if(valid) {
	  itien[y][x] = 1; sum++;
	  // printf("i = %d\n",i);
	}
  }
  cout << sum << endl;
  return 0;
}
0