結果

問題 No.599 回文かい
ユーザー uafr_csuafr_cs
提出日時 2017-11-24 22:41:53
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,253 bytes
コンパイル時間 3,040 ms
コンパイル使用メモリ 77,540 KB
実行使用メモリ 61,320 KB
最終ジャッジ日時 2024-11-27 07:34:26
合計ジャッジ時間 16,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
61,320 KB
testcase_01 AC 125 ms
60,948 KB
testcase_02 AC 122 ms
60,596 KB
testcase_03 AC 122 ms
53,788 KB
testcase_04 AC 123 ms
54,020 KB
testcase_05 AC 137 ms
54,220 KB
testcase_06 AC 126 ms
54,004 KB
testcase_07 AC 126 ms
54,128 KB
testcase_08 AC 123 ms
53,836 KB
testcase_09 AC 126 ms
54,044 KB
testcase_10 AC 136 ms
54,176 KB
testcase_11 AC 136 ms
53,760 KB
testcase_12 AC 155 ms
53,712 KB
testcase_13 AC 156 ms
53,784 KB
testcase_14 AC 275 ms
54,632 KB
testcase_15 AC 180 ms
53,900 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 203 ms
54,288 KB
testcase_19 AC 124 ms
53,652 KB
testcase_20 AC 123 ms
53,896 KB
evil_0.txt AC 267 ms
109,052 KB
権限があれば一括ダウンロードができます

ソースコード

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