結果

問題 No.1147 土偶Ⅱ
ユーザー 👑 rin204rin204
提出日時 2020-08-13 06:51:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 674 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-11 10:16:20
合計ジャッジ時間 4,572 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 89 ms
10,880 KB
testcase_05 AC 47 ms
10,752 KB
testcase_06 AC 183 ms
10,752 KB
testcase_07 AC 398 ms
10,624 KB
testcase_08 AC 53 ms
10,752 KB
testcase_09 AC 146 ms
10,752 KB
testcase_10 AC 88 ms
10,752 KB
testcase_11 TLE -
testcase_12 AC 214 ms
10,624 KB
testcase_13 AC 76 ms
10,752 KB
testcase_14 TLE -
testcase_15 AC 209 ms
10,624 KB
testcase_16 AC 81 ms
10,752 KB
testcase_17 AC 33 ms
10,624 KB
testcase_18 AC 49 ms
10,880 KB
testcase_19 AC 221 ms
10,752 KB
testcase_20 AC 32 ms
10,624 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 127 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())

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


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])
ans = 0
for i in range(n):
    for j in range(n):
        if d[i][j] == 2 or i == j:
            continue
        for k in range(n):
            if i == k or j == k:
                continue
            if (d[i][k] != 2) and (d[j][k] != 2):
                ans += 1
print(ans // 6)
            
            
0