結果

問題 No.60 魔法少女
ユーザー tailstails
提出日時 2017-02-23 09:35:29
言語 Perl
(5.40.0)
結果
MLE  
実行時間 -
コード長 666 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 667,896 KB
最終ジャッジ日時 2025-01-02 18:09:29
合計ジャッジ時間 92,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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..1501){
for$x(@i){
$l{$x,$y}+=$l{$x,$y-1}+($r=$m{$x,$y}+=$r);
}
}

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

print$r;

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