結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:18:11
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 28 ms
コンパイル使用メモリ 5,300 KB
実行使用メモリ 182,392 KB
最終ジャッジ日時 2023-08-23 23:42:58
合計ジャッジ時間 36,605 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,867 ms
58,936 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
4,832 KB
testcase_04 AC 2 ms
4,676 KB
testcase_05 AC 155 ms
35,136 KB
testcase_06 AC 1,888 ms
150,332 KB
testcase_07 WA -
testcase_08 AC 2,125 ms
159,964 KB
testcase_09 AC 1,204 ms
115,860 KB
testcase_10 AC 514 ms
68,732 KB
testcase_11 AC 989 ms
103,188 KB
testcase_12 AC 1,015 ms
104,804 KB
testcase_13 AC 566 ms
73,032 KB
testcase_14 WA -
testcase_15 AC 1,153 ms
113,604 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,066 ms
109,184 KB
testcase_20 AC 1,657 ms
142,048 KB
testcase_21 AC 1,079 ms
108,784 KB
testcase_22 WA -
testcase_23 AC 21 ms
5,640 KB
testcase_24 AC 13 ms
4,992 KB
testcase_25 AC 14 ms
4,976 KB
testcase_26 WA -
testcase_27 AC 35 ms
22,316 KB
testcase_28 AC 12 ms
5,728 KB
testcase_29 AC 17 ms
5,772 KB
testcase_30 WA -
testcase_31 AC 13 ms
4,940 KB
testcase_32 AC 35 ms
19,444 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 1,785 ms
54,472 KB
testcase_37 WA -
testcase_38 AC 1,786 ms
62,988 KB
testcase_39 AC 7 ms
4,896 KB
testcase_40 AC 6 ms
5,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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