結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 608 ms
63,744 KB
testcase_01 AC 554 ms
118,144 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 42 ms
21,760 KB
testcase_06 AC 494 ms
94,080 KB
testcase_07 AC 556 ms
101,120 KB
testcase_08 AC 563 ms
101,888 KB
testcase_09 AC 306 ms
68,992 KB
testcase_10 AC 125 ms
39,296 KB
testcase_11 AC 248 ms
60,672 KB
testcase_12 AC 254 ms
61,696 KB
testcase_13 AC 145 ms
41,984 KB
testcase_14 AC 47 ms
23,040 KB
testcase_15 AC 299 ms
67,456 KB
testcase_16 AC 535 ms
65,280 KB
testcase_17 AC 538 ms
65,280 KB
testcase_18 AC 525 ms
65,280 KB
testcase_19 AC 278 ms
64,512 KB
testcase_20 AC 444 ms
87,552 KB
testcase_21 AC 272 ms
64,128 KB
testcase_22 AC 8 ms
6,940 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 7 ms
6,944 KB
testcase_26 AC 8 ms
6,940 KB
testcase_27 AC 15 ms
15,616 KB
testcase_28 AC 8 ms
6,940 KB
testcase_29 AC 8 ms
6,944 KB
testcase_30 AC 12 ms
10,624 KB
testcase_31 AC 8 ms
6,944 KB
testcase_32 AC 13 ms
13,056 KB
testcase_33 AC 8 ms
6,944 KB
testcase_34 AC 9 ms
6,944 KB
testcase_35 AC 590 ms
61,568 KB
testcase_36 AC 596 ms
61,440 KB
testcase_37 AC 595 ms
106,368 KB
testcase_38 AC 590 ms
65,280 KB
testcase_39 AC 4 ms
6,940 KB
testcase_40 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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