結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:26:23
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 29 ms
コンパイル使用メモリ 5,300 KB
実行使用メモリ 184,608 KB
最終ジャッジ日時 2023-08-23 23:44:55
合計ジャッジ時間 35,878 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,811 ms
61,072 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
4,772 KB
testcase_04 AC 3 ms
4,764 KB
testcase_05 AC 150 ms
35,052 KB
testcase_06 AC 1,814 ms
152,004 KB
testcase_07 WA -
testcase_08 AC 2,009 ms
162,008 KB
testcase_09 AC 1,152 ms
116,892 KB
testcase_10 AC 509 ms
68,664 KB
testcase_11 AC 966 ms
103,864 KB
testcase_12 AC 989 ms
105,592 KB
testcase_13 AC 563 ms
73,036 KB
testcase_14 WA -
testcase_15 AC 1,131 ms
114,460 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,061 ms
110,036 KB
testcase_20 AC 1,647 ms
143,552 KB
testcase_21 AC 1,058 ms
109,760 KB
testcase_22 WA -
testcase_23 AC 21 ms
5,608 KB
testcase_24 AC 13 ms
4,800 KB
testcase_25 AC 13 ms
4,900 KB
testcase_26 WA -
testcase_27 AC 34 ms
22,508 KB
testcase_28 AC 12 ms
5,648 KB
testcase_29 AC 16 ms
5,900 KB
testcase_30 WA -
testcase_31 AC 12 ms
4,872 KB
testcase_32 AC 35 ms
19,388 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 1,771 ms
56,800 KB
testcase_37 WA -
testcase_38 AC 1,773 ms
65,336 KB
testcase_39 AC 7 ms
5,032 KB
testcase_40 AC 6 ms
4,824 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