結果

問題 No.60 魔法少女
ユーザー %20%20
提出日時 2017-03-01 13:19:02
言語 Perl
(5.40.0)
結果
AC  
実行時間 1,267 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-06-12 05:05:04
合計ジャッジ時間 11,731 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 358 ms
39,168 KB
testcase_01 AC 358 ms
39,296 KB
testcase_02 AC 361 ms
39,424 KB
testcase_03 AC 360 ms
39,296 KB
testcase_04 AC 880 ms
57,984 KB
testcase_05 AC 844 ms
67,712 KB
testcase_06 AC 1,220 ms
73,600 KB
testcase_07 AC 991 ms
66,816 KB
testcase_08 AC 756 ms
61,312 KB
testcase_09 AC 538 ms
52,224 KB
testcase_10 AC 1,154 ms
72,832 KB
testcase_11 AC 438 ms
44,800 KB
testcase_12 AC 697 ms
61,440 KB
testcase_13 AC 1,267 ms
74,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::K" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($N,$K)=glob<>;
for(0..$N-1){
	<>=~/ .* /;
	$X[$_]=500+$`;
	$Y[$_]=500+$&;
	$D[$_]=$'
}
for(<>){
	/ .* (.*) (.*) /;
	$_[500+$`][500+$&]+=$';
	$_[501+$`+$1][500+$&]-=$';
	$_[500+$`][501+$&+$2]-=$';
	$_[501+$`+$1][501+$&+$2]+=$'
}
for$y(0..1000){for$x(1..1000){
	$_[$x][$y]+=$_[$x-1][$y]
}}
for$x(0..1000){for$y(1..1000){
	$_[$x][$y]+=$_[$x][$y-1]
}}
for(0..$N-1){
	$\+=$-=$D[$_]-$_[$X[$_]][$Y[$_]]
}
print
0