結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:08:13
言語 Perl
(5.38.2)
結果
AC  
実行時間 603 ms / 5,000 ms
コード長 235 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 118,016 KB
最終ジャッジ日時 2024-06-01 21:08:28
合計ジャッジ時間 11,072 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 599 ms
63,744 KB
testcase_01 AC 521 ms
118,016 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 39 ms
21,760 KB
testcase_06 AC 458 ms
94,080 KB
testcase_07 AC 522 ms
101,120 KB
testcase_08 AC 534 ms
102,016 KB
testcase_09 AC 309 ms
69,120 KB
testcase_10 AC 122 ms
39,424 KB
testcase_11 AC 230 ms
60,672 KB
testcase_12 AC 244 ms
61,568 KB
testcase_13 AC 133 ms
41,984 KB
testcase_14 AC 41 ms
23,168 KB
testcase_15 AC 280 ms
67,456 KB
testcase_16 AC 504 ms
65,280 KB
testcase_17 AC 528 ms
65,280 KB
testcase_18 AC 527 ms
65,152 KB
testcase_19 AC 255 ms
64,640 KB
testcase_20 AC 409 ms
87,552 KB
testcase_21 AC 248 ms
64,256 KB
testcase_22 AC 7 ms
6,940 KB
testcase_23 AC 7 ms
6,944 KB
testcase_24 AC 7 ms
6,940 KB
testcase_25 AC 6 ms
6,940 KB
testcase_26 AC 7 ms
6,940 KB
testcase_27 AC 13 ms
15,744 KB
testcase_28 AC 7 ms
6,940 KB
testcase_29 AC 8 ms
6,940 KB
testcase_30 AC 10 ms
10,624 KB
testcase_31 AC 7 ms
6,944 KB
testcase_32 AC 12 ms
13,056 KB
testcase_33 AC 7 ms
6,944 KB
testcase_34 AC 8 ms
6,944 KB
testcase_35 AC 591 ms
61,696 KB
testcase_36 AC 603 ms
61,440 KB
testcase_37 AC 568 ms
106,496 KB
testcase_38 AC 581 ms
65,152 KB
testcase_39 AC 4 ms
6,944 KB
testcase_40 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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