結果

問題 No.599 回文かい
ユーザー uafr_csuafr_cs
提出日時 2017-11-24 22:41:53
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,253 bytes
コンパイル時間 2,273 ms
コンパイル使用メモリ 77,660 KB
実行使用メモリ 46,860 KB
最終ジャッジ日時 2024-05-05 11:09:51
合計ジャッジ時間 10,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,060 KB
testcase_01 AC 112 ms
41,040 KB
testcase_02 AC 124 ms
40,680 KB
testcase_03 AC 123 ms
41,032 KB
testcase_04 AC 131 ms
41,268 KB
testcase_05 AC 148 ms
40,972 KB
testcase_06 AC 130 ms
41,144 KB
testcase_07 AC 128 ms
41,072 KB
testcase_08 AC 127 ms
41,216 KB
testcase_09 AC 130 ms
40,948 KB
testcase_10 AC 142 ms
41,236 KB
testcase_11 AC 138 ms
41,424 KB
testcase_12 AC 158 ms
41,236 KB
testcase_13 AC 157 ms
41,208 KB
testcase_14 AC 273 ms
42,100 KB
testcase_15 AC 192 ms
41,100 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static long dfs(int offset, char[] ins, long[] memo){
		if(memo[offset] >= 0){
			return memo[offset];
		}
		
		long ret = 1;
		
		LOOP:
		for(int len = 1; ;len++){
			final int fst_begin = offset;
			final int snd_end = ins.length - offset;
			
			final int snd_begin = snd_end - len;
			final int fst_end = fst_begin + len;
			
			if(fst_end > snd_begin){ break; }
			/*
			System.out.println(fst_begin + " " + snd_begin + " " + len);
			System.out.println("[" + fst_begin + ", " + fst_end + "]");
			//*/
			
			for(int i = 0; i < len; i++){
				final int fst = fst_begin + i;
				final int snd = snd_begin + i;
				
				if(ins[fst] != ins[snd]){ continue LOOP; }
			}
			
			//System.out.println(offset + " " + fst_begin + " " + snd_begin + " " + len);
			
			
			ret += dfs(offset + len, ins, memo);
			ret %= MOD;
		}
		
		return memo[offset] = ret;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final char[] ins = sc.next().toCharArray();
		long[] memo = new long[ins.length];
		Arrays.fill(memo, -1);
		
		System.out.println(dfs(0, ins, memo));
	}
}
0