結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:07:01
言語 Perl
(5.38.2)
結果
AC  
実行時間 872 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 115,456 KB
最終ジャッジ日時 2024-06-01 21:08:16
合計ジャッジ時間 15,650 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 773 ms
61,056 KB
testcase_01 AC 871 ms
115,456 KB
testcase_02 AC 7 ms
6,940 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 AC 61 ms
21,632 KB
testcase_06 AC 729 ms
92,288 KB
testcase_07 AC 818 ms
99,200 KB
testcase_08 AC 845 ms
99,968 KB
testcase_09 AC 458 ms
67,968 KB
testcase_10 AC 189 ms
39,168 KB
testcase_11 AC 368 ms
59,904 KB
testcase_12 AC 391 ms
60,800 KB
testcase_13 AC 219 ms
41,856 KB
testcase_14 AC 70 ms
23,040 KB
testcase_15 AC 453 ms
66,432 KB
testcase_16 AC 698 ms
62,720 KB
testcase_17 AC 722 ms
62,464 KB
testcase_18 AC 716 ms
62,464 KB
testcase_19 AC 407 ms
63,616 KB
testcase_20 AC 650 ms
86,016 KB
testcase_21 AC 404 ms
63,360 KB
testcase_22 AC 13 ms
6,940 KB
testcase_23 AC 14 ms
6,940 KB
testcase_24 AC 12 ms
6,944 KB
testcase_25 AC 13 ms
6,944 KB
testcase_26 AC 13 ms
6,944 KB
testcase_27 AC 19 ms
16,256 KB
testcase_28 AC 13 ms
6,940 KB
testcase_29 AC 14 ms
6,944 KB
testcase_30 AC 16 ms
11,008 KB
testcase_31 AC 13 ms
6,940 KB
testcase_32 AC 19 ms
13,440 KB
testcase_33 AC 13 ms
6,940 KB
testcase_34 AC 13 ms
6,940 KB
testcase_35 AC 766 ms
58,880 KB
testcase_36 AC 814 ms
58,752 KB
testcase_37 AC 872 ms
104,192 KB
testcase_38 AC 735 ms
62,592 KB
testcase_39 AC 8 ms
6,944 KB
testcase_40 AC 8 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

<>;
for(<>){
	($X,$Y)=glob;
	$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