結果

問題 No.1147 土偶Ⅱ
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-26 15:37:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 500 ms
コード長 633 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 75,516 KB
最終ジャッジ日時 2024-06-23 15:02:53
合計ジャッジ時間 2,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,712 KB
testcase_01 AC 38 ms
52,656 KB
testcase_02 AC 37 ms
53,092 KB
testcase_03 AC 38 ms
52,832 KB
testcase_04 AC 60 ms
67,416 KB
testcase_05 AC 47 ms
61,912 KB
testcase_06 AC 84 ms
75,516 KB
testcase_07 AC 70 ms
68,764 KB
testcase_08 AC 53 ms
64,488 KB
testcase_09 AC 77 ms
74,784 KB
testcase_10 AC 61 ms
67,652 KB
testcase_11 AC 73 ms
68,592 KB
testcase_12 AC 67 ms
71,116 KB
testcase_13 AC 57 ms
67,712 KB
testcase_14 AC 67 ms
67,396 KB
testcase_15 AC 68 ms
69,828 KB
testcase_16 AC 57 ms
65,508 KB
testcase_17 AC 44 ms
59,596 KB
testcase_18 AC 53 ms
64,204 KB
testcase_19 AC 80 ms
74,912 KB
testcase_20 AC 44 ms
59,728 KB
testcase_21 AC 38 ms
53,488 KB
testcase_22 AC 77 ms
74,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
INF =10**18
d = [[INF]*n for i in range(n)]
for i in range(n):
    d[i][i] = 0
for i in range(m):
    a, b = map(int, input().split())
    a, b = a-1, b-1
    d[a][b] = 1
    d[b][a] = 1

def warshal_floyd(d):
    n = len(d)
    for k in range(n):
        for i in range(n):
            for j in range(n):
                d[i][j] = min(d[i][j], d[i][k]+d[k][j])
    return d

d = warshal_floyd(d)
ans = n*(n-1)*(n-2)//6
for i in range(n-2):
    for j in range(i+1, n-1):
        for k in range(j+1, n):
            if d[i][j] == 2 or d[j][k] == 2 or d[k][i] == 2:
                ans -= 1
print(ans)
0