結果
問題 | No.30 たこやき工場 |
ユーザー | Daigo HIROOKA |
提出日時 | 2018-07-01 03:14:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,093 bytes |
コンパイル時間 | 3,440 ms |
コンパイル使用メモリ | 78,468 KB |
実行使用メモリ | 59,000 KB |
最終ジャッジ日時 | 2024-07-01 01:04:17 |
合計ジャッジ時間 | 15,168 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | OLE | - |
testcase_09 | WA | - |
testcase_10 | OLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import java.util.*; public class No030{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[][] list = new int[n][n]; for(int i = 0; i < n; i++){ Arrays.fill(list[i], 0); } for(int i = 0; i < m; i++){ int p = sc.nextInt()-1; int q = sc.nextInt(); int r = sc.nextInt()-1; list[r][p] = q; } // System.out.println(Arrays.deepToString(list)); long[] ans = new long[n-1]; Arrays.fill(ans, 0); ArrayList<Integer> link = new ArrayList<Integer>(); for(int i = 0; i < n-1; i++){ ans[i] = list[n-1][i]; if(list[n-1][i] > 0){ link.add(i); } } while(link.size() > 0){ int idx = link.get(link.size()-1); link.remove(link.size()-1); boolean start = true; long num = ans[idx]; for(int i = 0; i < n-1; i++){ ans[i] += num*list[idx][i]; if(list[idx][i] > 0){ link.add(i); start = false; } } if(!start){ ans[idx] = 0; } System.out.println(link); } for(int i = 0; i < n-1; i++){ System.out.println(ans[i]); } } }