結果

問題 No.599 回文かい
ユーザー uafr_csuafr_cs
提出日時 2017-11-24 22:38:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,254 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 77,400 KB
実行使用メモリ 62,224 KB
最終ジャッジ日時 2024-05-05 11:07:37
合計ジャッジ時間 10,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
59,852 KB
testcase_01 AC 105 ms
53,352 KB
testcase_02 AC 112 ms
53,828 KB
testcase_03 AC 114 ms
53,852 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
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