結果

問題 No.372 It's automatic
ユーザー 37zigen37zigen
提出日時 2016-05-14 13:52:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,462 ms / 6,000 ms
コード長 1,340 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 79,548 KB
実行使用メモリ 57,700 KB
最終ジャッジ日時 2024-10-06 02:30:19
合計ジャッジ時間 34,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,152 KB
testcase_01 AC 133 ms
54,012 KB
testcase_02 AC 127 ms
53,936 KB
testcase_03 AC 135 ms
54,060 KB
testcase_04 AC 2,265 ms
57,436 KB
testcase_05 AC 2,380 ms
57,028 KB
testcase_06 AC 2,406 ms
57,024 KB
testcase_07 AC 2,400 ms
57,200 KB
testcase_08 AC 2,287 ms
56,960 KB
testcase_09 AC 2,413 ms
57,700 KB
testcase_10 AC 2,304 ms
56,940 KB
testcase_11 AC 2,393 ms
56,972 KB
testcase_12 AC 2,462 ms
57,104 KB
testcase_13 AC 2,385 ms
57,092 KB
testcase_14 AC 2,405 ms
56,992 KB
testcase_15 AC 2,422 ms
57,104 KB
testcase_16 AC 133 ms
54,248 KB
testcase_17 AC 134 ms
54,236 KB
testcase_18 AC 136 ms
54,380 KB
testcase_19 AC 136 ms
54,132 KB
testcase_20 AC 136 ms
54,144 KB
testcase_21 AC 320 ms
57,604 KB
testcase_22 AC 318 ms
57,264 KB
testcase_23 AC 308 ms
57,568 KB
testcase_24 AC 307 ms
57,412 KB
testcase_25 AC 306 ms
57,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	final int MOD=1_000_000_000+7;
	void solve(){
		Scanner sc=new Scanner(System.in);
		String str=sc.next();
		int m=sc.nextInt();
		
		int[] from=new int[m];
		int[] to=new int[m];
		
		/*
		 * dp[i][j]=先頭からi+1文字までの部分文字列を考えたとき、
		 * 余りjとなるものがいくつ存在するか。
		 * ex.1021213421 (m=3)
		 * dp[0][1]=1,dp[0][1]=0,dp[0][2]=0
		 */
		
		int ZERO=0;
		if(str.charAt(0)-'0'==0){
			ZERO++;
		}else{
			from[(str.charAt(0)-'0')%m]++;
		}
		for(int i=1;i<str.length();i++){
			/*
			 * dp[i][]を考える
			 */
			{
				for(int j=0;j<m;j++){
					to[(j*10+str.charAt(i)-'0')%m]+=from[j];
					to[(j*10+str.charAt(i)-'0')%m]%=MOD;
				}
				if(str.charAt(i)-'0'!=0){
					to[(str.charAt(i)-'0')%m]++;
				}else if(str.charAt(i)-'0'==0){
					ZERO++;
				}
				for(int j=0;j<m;j++){
					to[j]+=from[j];
					to[j]%=MOD;
				}
			}
			from=to;to=new int[m];
		}
		System.out.println((from[0]+ZERO)%MOD);
	}
	void showMt(int[][] a){
		System.out.println("-------------");
		for(int i=0;i<a.length;i++){
			for(int j=0;j<a[0].length;j++){
				System.out.print(a[i][j]+(j!=a[0].length-1?" ":"\n"));
			}
		}
		System.out.println("-------------");
	}
}
0