結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:13:33
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,099 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 196,864 KB
最終ジャッジ日時 2024-06-01 21:09:26
合計ジャッジ時間 20,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,033 ms
73,472 KB
testcase_01 AC 1,099 ms
196,864 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 82 ms
36,480 KB
testcase_06 AC 915 ms
161,408 KB
testcase_07 AC 1,023 ms
171,264 KB
testcase_08 AC 1,034 ms
172,160 KB
testcase_09 AC 569 ms
123,392 KB
testcase_10 AC 252 ms
71,552 KB
testcase_11 AC 471 ms
109,440 KB
testcase_12 AC 490 ms
111,104 KB
testcase_13 AC 273 ms
76,160 KB
testcase_14 AC 94 ms
38,912 KB
testcase_15 AC 549 ms
120,576 KB
testcase_16 AC 946 ms
76,288 KB
testcase_17 AC 957 ms
76,288 KB
testcase_18 AC 941 ms
76,160 KB
testcase_19 AC 521 ms
115,840 KB
testcase_20 AC 849 ms
151,936 KB
testcase_21 AC 527 ms
115,456 KB
testcase_22 AC 11 ms
6,944 KB
testcase_23 AC 11 ms
6,940 KB
testcase_24 AC 9 ms
6,944 KB
testcase_25 AC 9 ms
6,940 KB
testcase_26 AC 11 ms
6,940 KB
testcase_27 AC 26 ms
23,296 KB
testcase_28 AC 10 ms
6,944 KB
testcase_29 AC 10 ms
6,944 KB
testcase_30 AC 18 ms
14,464 KB
testcase_31 AC 9 ms
6,944 KB
testcase_32 AC 23 ms
20,224 KB
testcase_33 AC 11 ms
6,940 KB
testcase_34 AC 14 ms
6,944 KB
testcase_35 AC 996 ms
69,120 KB
testcase_36 AC 998 ms
69,248 KB
testcase_37 AC 1,096 ms
178,176 KB
testcase_38 AC 986 ms
77,568 KB
testcase_39 AC 5 ms
6,940 KB
testcase_40 AC 5 ms
6,940 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