結果

問題 No.189 SUPER HAPPY DAY
ユーザー tailstails
提出日時 2015-04-22 01:04:22
言語 Perl
(5.38.2)
結果
AC  
実行時間 865 ms / 5,000 ms
コード長 537 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-07-04 23:25:26
合計ジャッジ時間 19,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 629 ms
19,200 KB
testcase_01 AC 637 ms
19,072 KB
testcase_02 AC 638 ms
19,200 KB
testcase_03 AC 634 ms
19,072 KB
testcase_04 AC 641 ms
19,200 KB
testcase_05 AC 637 ms
19,072 KB
testcase_06 AC 638 ms
19,072 KB
testcase_07 AC 637 ms
19,072 KB
testcase_08 AC 635 ms
19,200 KB
testcase_09 AC 638 ms
19,200 KB
testcase_10 AC 635 ms
19,072 KB
testcase_11 AC 635 ms
19,072 KB
testcase_12 AC 638 ms
19,200 KB
testcase_13 AC 734 ms
19,328 KB
testcase_14 AC 788 ms
19,200 KB
testcase_15 AC 818 ms
19,200 KB
testcase_16 AC 837 ms
19,200 KB
testcase_17 AC 841 ms
19,072 KB
testcase_18 AC 789 ms
19,328 KB
testcase_19 AC 865 ms
19,200 KB
testcase_20 AC 697 ms
19,328 KB
testcase_21 AC 697 ms
19,200 KB
testcase_22 AC 643 ms
19,200 KB
testcase_23 AC 674 ms
19,200 KB
testcase_24 AC 675 ms
19,328 KB
testcase_25 AC 718 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$mod=1000000009;

@0=(1);
for$n(1..200){
    for$i(0..$n*9){
        for$d(0..9){
            ($$n[$i+$d]+=${$n-1}[$i])%=$mod;
        }
    }
}

($M,$D)=<>=~/\d+/g;
{use bigint;++$M;++$D;}

$o=0;
$_=$M;
while($_){
  s/.//;
  $l=length;
  for$i(0..@$l){
    for$d(0..$&-1){
      ($M[$o+$i+$d]+=$$l[$i])%=$mod;
    }
  }
  $o+=$&;
}

$o=0;
$_=$D;
while($_){
  s/.//;
  $l=length;
  for$i(0..@$l){
    for$d(0..$&-1){
      ($D[$o+$i+$d]+=$$l[$i])%=$mod;
    }
  }
  $o+=$&;
}

for(1..2010){
  $r=($r+$D[$_]*$M[$_]%$mod)%$mod;
}
print$r;
0