結果

問題 No.202 1円玉投げ
ユーザー TLwiegehttTLwiegehtt
提出日時 2015-07-20 04:17:17
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 557 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 24,012 KB
実行使用メモリ 4,508 KB
最終ジャッジ日時 2023-08-23 23:08:12
合計ジャッジ時間 77,381 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
4,376 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 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1 ms
4,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1 ms
4,376 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 WA -
testcase_38 TLE -
testcase_39 AC 1 ms
4,376 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

#define	CMAX	(100000)


typedef struct{
	int x;
	int y;
}POINT;


POINT coin[CMAX+5];

int main(void){
	int i,j,n;
	int cCnt=0;
	
	scanf("%d", &n);
	
	for(i=0;i<n;i++){
		int noHit=1;
		int tx, ty;
		scanf("%d %d", &tx, &ty);
		
		for(j=0;j<cCnt;j++){
			int len = (tx-coin[j].x)*(tx-coin[j].x) + (ty-coin[j].y)*(ty-coin[j].y);
			
			if(len < 20*20){
				printf("Hit %d %d\n",i, j);
				noHit = 0;
				break;
			}
		}
		if(noHit==1){
			coin[cCnt].x = tx;
			coin[cCnt].y = ty;
			cCnt += 1;
		}
	}
	
	printf("%d\n", cCnt);
	return 0;
}
0