結果

問題 No.202 1円玉投げ
ユーザー %20%20
提出日時 2018-05-30 17:10:44
言語 Perl
(5.38.2)
結果
AC  
実行時間 655 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 56 ms
コンパイル使用メモリ 5,300 KB
実行使用メモリ 117,408 KB
最終ジャッジ日時 2023-08-23 23:41:27
合計ジャッジ時間 12,336 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 655 ms
63,076 KB
testcase_01 AC 602 ms
117,408 KB
testcase_02 AC 3 ms
4,680 KB
testcase_03 AC 2 ms
4,688 KB
testcase_04 AC 3 ms
4,704 KB
testcase_05 AC 45 ms
20,952 KB
testcase_06 AC 522 ms
93,512 KB
testcase_07 AC 584 ms
100,364 KB
testcase_08 AC 593 ms
101,288 KB
testcase_09 AC 326 ms
68,196 KB
testcase_10 AC 139 ms
38,728 KB
testcase_11 AC 268 ms
59,792 KB
testcase_12 AC 273 ms
60,924 KB
testcase_13 AC 151 ms
41,280 KB
testcase_14 AC 50 ms
22,508 KB
testcase_15 AC 318 ms
66,592 KB
testcase_16 AC 572 ms
64,520 KB
testcase_17 AC 577 ms
64,372 KB
testcase_18 AC 576 ms
64,432 KB
testcase_19 AC 300 ms
63,868 KB
testcase_20 AC 479 ms
86,960 KB
testcase_21 AC 297 ms
63,508 KB
testcase_22 AC 7 ms
5,556 KB
testcase_23 AC 8 ms
5,484 KB
testcase_24 AC 8 ms
4,652 KB
testcase_25 AC 7 ms
4,896 KB
testcase_26 AC 8 ms
5,596 KB
testcase_27 AC 15 ms
14,916 KB
testcase_28 AC 7 ms
5,392 KB
testcase_29 AC 8 ms
5,292 KB
testcase_30 AC 12 ms
9,932 KB
testcase_31 AC 6 ms
4,748 KB
testcase_32 AC 14 ms
12,136 KB
testcase_33 AC 8 ms
5,224 KB
testcase_34 AC 9 ms
5,244 KB
testcase_35 AC 635 ms
60,780 KB
testcase_36 AC 642 ms
60,520 KB
testcase_37 AC 628 ms
105,484 KB
testcase_38 AC 634 ms
64,428 KB
testcase_39 AC 5 ms
4,948 KB
testcase_40 AC 4 ms
4,968 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