結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:13:33
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,259 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 5,300 KB
実行使用メモリ 196,180 KB
最終ジャッジ日時 2023-08-23 23:41:51
合計ジャッジ時間 22,240 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,126 ms
72,540 KB
testcase_01 AC 1,209 ms
196,180 KB
testcase_02 AC 3 ms
4,660 KB
testcase_03 AC 2 ms
4,564 KB
testcase_04 AC 3 ms
4,648 KB
testcase_05 AC 88 ms
35,796 KB
testcase_06 AC 1,047 ms
160,512 KB
testcase_07 AC 1,175 ms
170,548 KB
testcase_08 AC 1,181 ms
171,468 KB
testcase_09 AC 648 ms
122,600 KB
testcase_10 AC 283 ms
70,732 KB
testcase_11 AC 535 ms
108,540 KB
testcase_12 AC 552 ms
110,420 KB
testcase_13 AC 304 ms
75,400 KB
testcase_14 AC 100 ms
38,340 KB
testcase_15 AC 628 ms
119,948 KB
testcase_16 AC 993 ms
75,428 KB
testcase_17 AC 986 ms
75,384 KB
testcase_18 AC 990 ms
75,524 KB
testcase_19 AC 579 ms
115,160 KB
testcase_20 AC 932 ms
151,224 KB
testcase_21 AC 582 ms
114,640 KB
testcase_22 AC 11 ms
5,616 KB
testcase_23 AC 11 ms
5,860 KB
testcase_24 AC 9 ms
4,708 KB
testcase_25 AC 9 ms
5,020 KB
testcase_26 AC 11 ms
5,932 KB
testcase_27 AC 24 ms
22,584 KB
testcase_28 AC 9 ms
5,688 KB
testcase_29 AC 9 ms
5,744 KB
testcase_30 AC 18 ms
13,612 KB
testcase_31 AC 8 ms
4,788 KB
testcase_32 AC 24 ms
19,580 KB
testcase_33 AC 10 ms
5,616 KB
testcase_34 AC 14 ms
5,280 KB
testcase_35 AC 1,046 ms
68,612 KB
testcase_36 AC 1,061 ms
68,620 KB
testcase_37 AC 1,259 ms
177,324 KB
testcase_38 AC 1,050 ms
76,916 KB
testcase_39 AC 5 ms
5,044 KB
testcase_40 AC 4 ms
4,980 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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