結果

問題 No.60 魔法少女
ユーザー tailstails
提出日時 2017-02-23 09:36:26
言語 Perl
(5.40.0)
結果
AC  
実行時間 2,314 ms / 5,000 ms
コード長 671 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 240,748 KB
最終ジャッジ日時 2025-01-02 18:13:45
合計ジャッジ時間 30,066 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,673 ms
210,644 KB
testcase_01 AC 1,666 ms
210,504 KB
testcase_02 AC 1,853 ms
210,568 KB
testcase_03 AC 1,673 ms
210,512 KB
testcase_04 AC 2,070 ms
225,012 KB
testcase_05 AC 1,973 ms
229,760 KB
testcase_06 AC 2,314 ms
239,720 KB
testcase_07 AC 2,151 ms
231,976 KB
testcase_08 AC 1,953 ms
224,740 KB
testcase_09 AC 1,784 ms
216,380 KB
testcase_10 AC 2,248 ms
238,224 KB
testcase_11 AC 1,679 ms
213,924 KB
testcase_12 AC 1,875 ms
223,888 KB
testcase_13 AC 2,299 ms
240,748 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::k" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($n,$k)=glob<>;
$e[$_]=<>for 0..$n-1;

for(<>){
($x,$y,$w,$h,$d)=split;
$m{$x,$y}+=$d;
$m{$x+$w+1,$y}-=$d;
$m{$x,$y+$h+1}-=$d;
$m{$x+$w+1,$y+$h+1}+=$d;
}

for$y(@i=-500..500){
$s=0;
for$x(@i){
$l{$x,$y}+=$l{$x,$y-1}+($s=$m{$x,$y}+=$s);
}
}

for(@e){
($x,$y,$h)=split;
$r+=$-=$h-$l{$x,$y};
}

print$r;

########################################
########################################
########################################
########################################
########################################
########################################
########################################
########################################
########################################
0