結果

問題 No.1147 土偶Ⅱ
ユーザー tentententen
提出日時 2020-08-17 18:55:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 500 ms
コード長 1,188 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 44,080 KB
最終ジャッジ日時 2024-10-11 11:13:45
合計ジャッジ時間 7,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,200 KB
testcase_01 AC 133 ms
41,036 KB
testcase_02 AC 134 ms
41,144 KB
testcase_03 AC 137 ms
40,900 KB
testcase_04 AC 204 ms
42,652 KB
testcase_05 AC 118 ms
40,100 KB
testcase_06 AC 214 ms
43,808 KB
testcase_07 AC 217 ms
42,936 KB
testcase_08 AC 160 ms
41,304 KB
testcase_09 AC 213 ms
43,684 KB
testcase_10 AC 196 ms
42,704 KB
testcase_11 AC 229 ms
42,808 KB
testcase_12 AC 200 ms
42,204 KB
testcase_13 AC 164 ms
41,528 KB
testcase_14 AC 211 ms
42,212 KB
testcase_15 AC 218 ms
43,404 KB
testcase_16 AC 191 ms
42,096 KB
testcase_17 AC 144 ms
41,416 KB
testcase_18 AC 148 ms
41,512 KB
testcase_19 AC 217 ms
44,080 KB
testcase_20 AC 141 ms
41,092 KB
testcase_21 AC 133 ms
40,932 KB
testcase_22 AC 211 ms
43,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int[][] costs = new int[n][n];
        for (int i = 0; i < n; i++) {
            Arrays.fill(costs[i], Integer.MAX_VALUE / 10);
            costs[i][i] = 0;
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            costs[a][b] = 1;
            costs[b][a] = 1;
        }
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                for (int k = 0; k < n; k++) {
                    costs[j][k] = Math.min(costs[j][k], costs[j][i] + costs[i][k]);
                }
            }
        }
        int count = 0;
        for (int i = 0; i < n - 2; i++) {
            for (int j = i + 1; j < n - 1; j++) {
                for (int k = j + 1; k < n; k++) {
                    if (costs[i][j] != 2 && costs[j][k] != 2 && costs[i][k] != 2) {
                        count++;
                    }
                }
            }
        }
        System.out.println(count);
    }
}
0