結果

問題 No.464 PPAP
ユーザー uwiuwi
提出日時 2016-12-10 02:48:45
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 2,071 bytes
コンパイル時間 5,468 ms
コンパイル使用メモリ 78,936 KB
実行使用メモリ 109,068 KB
最終ジャッジ日時 2024-11-28 21:17:56
合計ジャッジ時間 18,701 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
60,772 KB
testcase_01 AC 131 ms
109,068 KB
testcase_02 AC 130 ms
60,840 KB
testcase_03 AC 133 ms
108,592 KB
testcase_04 AC 160 ms
61,328 KB
testcase_05 AC 138 ms
53,852 KB
testcase_06 AC 134 ms
54,208 KB
testcase_07 AC 395 ms
54,684 KB
testcase_08 AC 194 ms
54,424 KB
testcase_09 AC 134 ms
54,152 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 148 ms
54,240 KB
testcase_14 AC 231 ms
54,364 KB
testcase_15 AC 131 ms
53,888 KB
testcase_16 AC 130 ms
54,060 KB
testcase_17 AC 133 ms
54,020 KB
testcase_18 AC 131 ms
54,376 KB
testcase_19 AC 132 ms
54,164 KB
testcase_20 AC 119 ms
52,724 KB
testcase_21 AC 134 ms
53,860 KB
testcase_22 AC 129 ms
54,096 KB
testcase_23 AC 144 ms
53,920 KB
testcase_24 AC 146 ms
54,212 KB
testcase_25 AC 151 ms
108,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package adv2016;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class N464N {
	static Scanner in;
	static PrintWriter out;
	
	static String INPUT = "";

	static void solve() {
		char[] s = in.next().toCharArray();
		if(!(s.length >= 4))throw new AssertionError();
		if(!(s.length <= 5000))throw new AssertionError();
		for(char c : s){
			if(!(c >= 'a' && c <= 'z'))throw new AssertionError();
		}
		
		long B = 1000000009;
		int n = s.length;
		long[] hs = new long[n+1];
		for(int i = 0;i < n;i++){
			hs[i+1] = hs[i] * B + s[i];
		}
		long[] rhs = new long[n+1];
		for(int i = 0;i < n;i++){
			rhs[n-i-1] = rhs[n-i] * B + s[n-1-i];
		}
		long[] pows = new long[n+1];
		pows[0] = 1;
		for(int i = 1;i <= n;i++)pows[i] = pows[i-1] * B;
		
		long ct = 0;
		for(int i = 1;i < n;i++){
			if(hs[i] == rhs[0] - rhs[i]*pows[i]){
				for(int j = i+1;j < n;j++){
					if(hs[j] - hs[i] * pows[j-i] == rhs[i] - rhs[j] * pows[j-i]){
						for(int k = j+1;k < n;k++){
							if(hs[n] - hs[k] * pows[n-k] == rhs[k] - rhs[n] * pows[n-k]){
								ct++;
							}
						}
					}
				}
			}
		}
		out.println(ct);
	}
	
	public static int[] palindrome(char[] str)
	{
		int n = str.length;
		int[] r = new int[2*n];
		int k = 0;
		for(int i = 0, j = 0;i < 2*n;i += k, j = Math.max(j-k, 0)){
			// normally
			while(i-j >= 0 && i+j+1 < 2*n && str[(i-j)/2] == str[(i+j+1)/2])j++;
			r[i] = j;
			
			// skip based on the theorem
			for(k = 1;i-k >= 0 && r[i]-k >= 0 && r[i-k] != r[i]-k;k++){
				r[i+k] = Math.min(r[i-k], r[i]-k);
			}
		}
		return r;
	}


	public static void main(String[] args) throws Exception {
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);

		solve();
		out.flush();
	}

	static int ni() {
		return Integer.parseInt(in.next());
	}

	static long nl() {
		return Long.parseLong(in.next());
	}

	static double nd() {
		return Double.parseDouble(in.next());
	}

	static void tr(Object... o) {
		if (INPUT.length() != 0)
			System.out.println(Arrays.deepToString(o));
	}
}
0