結果

問題 No.599 回文かい
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-24 23:06:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,180 ms / 4,000 ms
コード長 1,301 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 77,468 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-05-05 11:24:05
合計ジャッジ時間 10,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
54,188 KB
testcase_01 AC 122 ms
54,204 KB
testcase_02 AC 106 ms
53,028 KB
testcase_03 AC 110 ms
53,876 KB
testcase_04 AC 117 ms
53,920 KB
testcase_05 AC 99 ms
52,320 KB
testcase_06 AC 104 ms
52,764 KB
testcase_07 AC 118 ms
54,380 KB
testcase_08 AC 106 ms
52,800 KB
testcase_09 AC 115 ms
54,076 KB
testcase_10 AC 379 ms
53,916 KB
testcase_11 AC 280 ms
53,768 KB
testcase_12 AC 433 ms
54,020 KB
testcase_13 AC 302 ms
54,236 KB
testcase_14 AC 581 ms
54,100 KB
testcase_15 AC 636 ms
53,876 KB
testcase_16 AC 1,065 ms
54,236 KB
testcase_17 AC 1,180 ms
54,284 KB
testcase_18 AC 103 ms
52,832 KB
testcase_19 AC 101 ms
52,908 KB
testcase_20 AC 110 ms
53,784 KB
evil_0.txt AC 497 ms
54,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    static final long MOD=1000000007;
    static final long P=1000000009;
    static final long[]Q={MOD,P};
    static long[]dp;
    static long[][]h,p;
    static final long b=31;
    static long c(int x,int y,int j){
        long t=h[j][y];
        t+=h[j][x]*(Q[j]-p[j][y-x])%Q[j];
        return t%Q[j];
    }
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        String s=scan.next();
        int n=s.length();
        int[]a=new int[n];
        for(int i=0;i<n;++i)a[i]=s.charAt(i)-'a';
        h=new long[2][n+1];
        p=new long[2][n+1];
        for(int j=0;j<2;++j)
            for(int i=0;i<n;++i)
                h[j][i+1]=(b*h[j][i]+a[i])%Q[j];
        p[0][0]=p[1][0]=1;
        for(int j=0;j<2;++j)
            for(int i=0;i<n;++i)
                p[j][i+1]=p[j][i]*b%Q[j];
        dp=new long[n+1];
        dp[0]=1;
        for(int i=1;i<=n/2;++i){
            long t=0;
            for(int j=0;j<=i;++j){
                if(c(j,i,0)==c(n-i,n-j,0)&&c(j,i,1)==c(n-i,n-j,1))t=(t+dp[j])%MOD;
            }
            dp[i]=t;
        }
        long t=0;
        for(int i=0;i<=n/2;++i)
            t=(t+dp[i])%MOD;
        //System.err.println(Arrays.toString(dp));
        System.out.println(t);
    }
}
0