結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,736 ms
61,824 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 139 ms
35,840 KB
testcase_06 AC 1,700 ms
152,704 KB
testcase_07 WA -
testcase_08 AC 1,934 ms
162,816 KB
testcase_09 AC 1,074 ms
117,760 KB
testcase_10 AC 454 ms
69,376 KB
testcase_11 AC 883 ms
104,704 KB
testcase_12 AC 913 ms
106,240 KB
testcase_13 AC 503 ms
73,728 KB
testcase_14 WA -
testcase_15 AC 1,054 ms
115,328 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 978 ms
110,720 KB
testcase_20 AC 1,526 ms
144,256 KB
testcase_21 AC 978 ms
110,336 KB
testcase_22 WA -
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 13 ms
6,944 KB
testcase_25 AC 12 ms
6,944 KB
testcase_26 WA -
testcase_27 AC 31 ms
23,168 KB
testcase_28 AC 12 ms
6,940 KB
testcase_29 AC 16 ms
6,940 KB
testcase_30 WA -
testcase_31 AC 13 ms
6,940 KB
testcase_32 AC 33 ms
20,096 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 1,670 ms
57,472 KB
testcase_37 WA -
testcase_38 AC 1,631 ms
66,048 KB
testcase_39 AC 7 ms
6,940 KB
testcase_40 AC 6 ms
6,944 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