結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 13:14:29
言語 Perl
(5.38.2)
結果
AC  
実行時間 565 ms / 5,000 ms
コード長 245 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 114,944 KB
最終ジャッジ日時 2024-06-01 21:07:58
合計ジャッジ時間 10,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
60,544 KB
testcase_01 AC 511 ms
114,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 38 ms
21,120 KB
testcase_06 AC 450 ms
91,520 KB
testcase_07 AC 511 ms
98,688 KB
testcase_08 AC 506 ms
99,328 KB
testcase_09 AC 277 ms
67,328 KB
testcase_10 AC 118 ms
38,656 KB
testcase_11 AC 222 ms
59,264 KB
testcase_12 AC 230 ms
60,288 KB
testcase_13 AC 126 ms
41,088 KB
testcase_14 AC 41 ms
22,400 KB
testcase_15 AC 266 ms
65,792 KB
testcase_16 AC 428 ms
62,080 KB
testcase_17 AC 437 ms
61,952 KB
testcase_18 AC 434 ms
61,824 KB
testcase_19 AC 255 ms
63,104 KB
testcase_20 AC 405 ms
85,504 KB
testcase_21 AC 246 ms
62,848 KB
testcase_22 AC 7 ms
6,944 KB
testcase_23 AC 6 ms
6,940 KB
testcase_24 AC 7 ms
6,944 KB
testcase_25 AC 7 ms
6,940 KB
testcase_26 AC 7 ms
6,940 KB
testcase_27 AC 13 ms
15,488 KB
testcase_28 AC 7 ms
6,940 KB
testcase_29 AC 7 ms
6,940 KB
testcase_30 AC 10 ms
10,368 KB
testcase_31 AC 6 ms
6,944 KB
testcase_32 AC 12 ms
12,672 KB
testcase_33 AC 8 ms
6,944 KB
testcase_34 AC 8 ms
6,940 KB
testcase_35 AC 505 ms
58,368 KB
testcase_36 AC 479 ms
58,240 KB
testcase_37 AC 565 ms
103,552 KB
testcase_38 AC 471 ms
61,952 KB
testcase_39 AC 4 ms
6,940 KB
testcase_40 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

<>;
for(<>){
	($X,$Y)=split;
	$x=$X/20+1|0;
	$y=$Y/20+1|0;
	for$y($y-1..$y+1){
		for$x($x-1..$x+1){
			for(@{$_[$y][$x]}){
				if((@$_[0]-$X)**2+(@$_[1]-$Y)**2<400){
					goto a
				}
			}
		}
	}
	push@{$_[$y][$x]},[$X,$Y];
	++$z;
	a:
}
print$z
0