結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:16:12
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,179 ms / 5,000 ms
コード長 223 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 5,300 KB
実行使用メモリ 195,964 KB
最終ジャッジ日時 2023-08-23 23:42:15
合計ジャッジ時間 20,787 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,061 ms
72,620 KB
testcase_01 AC 1,151 ms
195,964 KB
testcase_02 AC 3 ms
4,680 KB
testcase_03 AC 3 ms
4,736 KB
testcase_04 AC 2 ms
4,560 KB
testcase_05 AC 83 ms
35,736 KB
testcase_06 AC 964 ms
160,508 KB
testcase_07 AC 1,070 ms
170,596 KB
testcase_08 AC 1,105 ms
171,684 KB
testcase_09 AC 614 ms
122,492 KB
testcase_10 AC 266 ms
70,928 KB
testcase_11 AC 505 ms
108,716 KB
testcase_12 AC 523 ms
110,184 KB
testcase_13 AC 294 ms
75,424 KB
testcase_14 AC 96 ms
38,236 KB
testcase_15 AC 595 ms
120,044 KB
testcase_16 AC 991 ms
75,408 KB
testcase_17 AC 990 ms
75,480 KB
testcase_18 AC 980 ms
75,348 KB
testcase_19 AC 571 ms
115,144 KB
testcase_20 AC 879 ms
151,128 KB
testcase_21 AC 556 ms
114,656 KB
testcase_22 AC 11 ms
5,692 KB
testcase_23 AC 11 ms
5,816 KB
testcase_24 AC 9 ms
4,780 KB
testcase_25 AC 8 ms
4,880 KB
testcase_26 AC 11 ms
5,944 KB
testcase_27 AC 24 ms
22,576 KB
testcase_28 AC 8 ms
5,752 KB
testcase_29 AC 10 ms
5,788 KB
testcase_30 AC 18 ms
13,756 KB
testcase_31 AC 8 ms
4,868 KB
testcase_32 AC 23 ms
19,456 KB
testcase_33 AC 11 ms
5,648 KB
testcase_34 AC 13 ms
5,304 KB
testcase_35 AC 1,036 ms
68,524 KB
testcase_36 AC 1,060 ms
68,508 KB
testcase_37 AC 1,179 ms
177,664 KB
testcase_38 AC 1,037 ms
76,836 KB
testcase_39 AC 5 ms
4,856 KB
testcase_40 AC 4 ms
4,900 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