結果

問題 No.30 たこやき工場
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-01 03:31:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 5,000 ms
コード長 896 bytes
コンパイル時間 4,109 ms
コンパイル使用メモリ 77,496 KB
実行使用メモリ 45,576 KB
最終ジャッジ日時 2024-12-21 05:27:58
合計ジャッジ時間 6,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,276 KB
testcase_01 AC 116 ms
41,560 KB
testcase_02 AC 130 ms
41,148 KB
testcase_03 AC 132 ms
41,276 KB
testcase_04 AC 131 ms
41,420 KB
testcase_05 AC 130 ms
41,560 KB
testcase_06 AC 132 ms
41,508 KB
testcase_07 AC 134 ms
41,416 KB
testcase_08 AC 174 ms
41,772 KB
testcase_09 AC 172 ms
42,124 KB
testcase_10 AC 214 ms
45,576 KB
testcase_11 AC 172 ms
42,072 KB
testcase_12 AC 133 ms
41,548 KB
testcase_13 AC 149 ms
41,828 KB
testcase_14 AC 188 ms
42,400 KB
testcase_15 AC 180 ms
42,160 KB
testcase_16 AC 194 ms
42,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No030{
	static int[] dp;
	static int[][] in;
	
	static int dfs(int i, int n){
		if(i == n) return 1;
		if(dp[i] != 0) return dp[i];
		int res = 0;
		for(int j = 1; j < 101; j++){
			if(in[i][j] != 0){
				res += in[i][j]*dfs(j, n);
			}
		}
		return dp[i] = res;
	}
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		int m = sc.nextInt();
		dp = new int[101];
		int[] ans = new int[101];
		Arrays.fill(ans, -1);
		in = new int[101][101];
		for(int i = 0; i < m; i++){
			int p = sc.nextInt();
			int q = sc.nextInt();
			int r = sc.nextInt();
			in[p][r] = q;
		}

		for(int i = 1; i < n; i++){
			boolean flg = true;
			for(int j = 1; j < 101; j++){
				if(in[j][i] != 0){
					System.out.println(0);
					flg = false;
					break;
				}
			}
			if(flg){
				System.out.println(dfs(i, n));
			}
		}
	}
}
0