結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:08:13
言語 Perl
(5.38.2)
結果
AC  
実行時間 671 ms / 5,000 ms
コード長 235 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 5,380 KB
実行使用メモリ 117,260 KB
最終ジャッジ日時 2023-08-23 23:40:46
合計ジャッジ時間 13,153 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 671 ms
62,992 KB
testcase_01 AC 640 ms
117,260 KB
testcase_02 AC 3 ms
4,496 KB
testcase_03 AC 2 ms
4,636 KB
testcase_04 AC 2 ms
4,612 KB
testcase_05 AC 45 ms
21,084 KB
testcase_06 AC 541 ms
93,472 KB
testcase_07 AC 620 ms
100,488 KB
testcase_08 AC 615 ms
101,112 KB
testcase_09 AC 336 ms
68,336 KB
testcase_10 AC 146 ms
38,600 KB
testcase_11 AC 281 ms
59,744 KB
testcase_12 AC 288 ms
60,944 KB
testcase_13 AC 159 ms
41,100 KB
testcase_14 AC 54 ms
22,248 KB
testcase_15 AC 335 ms
66,672 KB
testcase_16 AC 582 ms
64,508 KB
testcase_17 AC 580 ms
64,508 KB
testcase_18 AC 586 ms
64,516 KB
testcase_19 AC 315 ms
63,900 KB
testcase_20 AC 497 ms
86,976 KB
testcase_21 AC 314 ms
63,472 KB
testcase_22 AC 8 ms
5,396 KB
testcase_23 AC 7 ms
5,468 KB
testcase_24 AC 8 ms
4,732 KB
testcase_25 AC 7 ms
4,808 KB
testcase_26 AC 7 ms
5,560 KB
testcase_27 AC 15 ms
14,848 KB
testcase_28 AC 8 ms
5,204 KB
testcase_29 AC 7 ms
5,232 KB
testcase_30 AC 12 ms
9,884 KB
testcase_31 AC 7 ms
4,796 KB
testcase_32 AC 13 ms
12,216 KB
testcase_33 AC 8 ms
5,304 KB
testcase_34 AC 9 ms
5,204 KB
testcase_35 AC 664 ms
60,760 KB
testcase_36 AC 651 ms
60,724 KB
testcase_37 AC 658 ms
105,632 KB
testcase_38 AC 647 ms
64,432 KB
testcase_39 AC 4 ms
4,860 KB
testcase_40 AC 4 ms
4,644 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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