結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:32:51
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 5,296 KB
実行使用メモリ 184,560 KB
最終ジャッジ日時 2023-08-23 23:46:05
合計ジャッジ時間 36,858 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,807 ms
61,164 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
4,716 KB
testcase_04 AC 3 ms
4,760 KB
testcase_05 AC 150 ms
35,224 KB
testcase_06 AC 1,878 ms
151,960 KB
testcase_07 WA -
testcase_08 AC 2,067 ms
162,148 KB
testcase_09 AC 1,192 ms
116,824 KB
testcase_10 AC 515 ms
68,620 KB
testcase_11 AC 987 ms
103,956 KB
testcase_12 AC 1,007 ms
105,680 KB
testcase_13 AC 563 ms
73,020 KB
testcase_14 WA -
testcase_15 AC 1,132 ms
114,416 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,083 ms
110,268 KB
testcase_20 AC 1,671 ms
143,508 KB
testcase_21 AC 1,068 ms
109,660 KB
testcase_22 WA -
testcase_23 AC 21 ms
5,784 KB
testcase_24 AC 13 ms
4,868 KB
testcase_25 AC 13 ms
4,884 KB
testcase_26 WA -
testcase_27 AC 33 ms
22,424 KB
testcase_28 AC 12 ms
5,800 KB
testcase_29 AC 16 ms
5,808 KB
testcase_30 WA -
testcase_31 AC 13 ms
4,712 KB
testcase_32 AC 35 ms
19,360 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 1,786 ms
56,848 KB
testcase_37 WA -
testcase_38 AC 1,802 ms
65,368 KB
testcase_39 AC 8 ms
5,128 KB
testcase_40 AC 6 ms
4,796 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][0]=$`;
	$_[$y+2][$x+2][1]=$';
	++$z;
	a:
}
print$z
0