結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:16:12
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,075 ms / 5,000 ms
コード長 223 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 196,736 KB
最終ジャッジ日時 2024-06-01 21:09:46
合計ジャッジ時間 18,954 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 997 ms
73,344 KB
testcase_01 AC 1,063 ms
196,736 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 78 ms
36,352 KB
testcase_06 AC 902 ms
161,408 KB
testcase_07 AC 982 ms
171,264 KB
testcase_08 AC 1,001 ms
172,160 KB
testcase_09 AC 555 ms
123,392 KB
testcase_10 AC 238 ms
71,552 KB
testcase_11 AC 450 ms
109,440 KB
testcase_12 AC 471 ms
110,976 KB
testcase_13 AC 265 ms
76,288 KB
testcase_14 AC 88 ms
39,040 KB
testcase_15 AC 529 ms
120,704 KB
testcase_16 AC 893 ms
76,160 KB
testcase_17 AC 911 ms
76,288 KB
testcase_18 AC 896 ms
76,288 KB
testcase_19 AC 498 ms
115,840 KB
testcase_20 AC 798 ms
151,936 KB
testcase_21 AC 497 ms
115,584 KB
testcase_22 AC 12 ms
6,944 KB
testcase_23 AC 11 ms
6,944 KB
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 9 ms
6,944 KB
testcase_26 AC 11 ms
6,944 KB
testcase_27 AC 24 ms
23,296 KB
testcase_28 AC 10 ms
6,940 KB
testcase_29 AC 10 ms
6,940 KB
testcase_30 AC 17 ms
14,464 KB
testcase_31 AC 8 ms
6,940 KB
testcase_32 AC 21 ms
20,224 KB
testcase_33 AC 10 ms
6,940 KB
testcase_34 AC 13 ms
6,944 KB
testcase_35 AC 961 ms
69,248 KB
testcase_36 AC 968 ms
69,248 KB
testcase_37 AC 1,075 ms
178,304 KB
testcase_38 AC 971 ms
77,696 KB
testcase_39 AC 5 ms
6,944 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
				}
			}
		}
	}
	@{$_[$y+2][$x+2]}=[$`,$'];
	++$z;
	a:
}
print$z
0