結果

問題 No.1147 土偶Ⅱ
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 13:43:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 500 ms
コード長 481 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 77,320 KB
最終ジャッジ日時 2024-11-23 17:31:15
合計ジャッジ時間 3,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
59,184 KB
testcase_01 AC 48 ms
52,756 KB
testcase_02 AC 47 ms
53,580 KB
testcase_03 AC 48 ms
53,508 KB
testcase_04 AC 94 ms
74,796 KB
testcase_05 AC 65 ms
64,140 KB
testcase_06 AC 124 ms
76,776 KB
testcase_07 AC 128 ms
76,292 KB
testcase_08 AC 79 ms
70,416 KB
testcase_09 AC 118 ms
76,896 KB
testcase_10 AC 88 ms
75,156 KB
testcase_11 AC 145 ms
76,340 KB
testcase_12 AC 111 ms
76,416 KB
testcase_13 AC 93 ms
74,196 KB
testcase_14 AC 137 ms
76,468 KB
testcase_15 AC 118 ms
76,524 KB
testcase_16 AC 93 ms
75,000 KB
testcase_17 AC 57 ms
60,852 KB
testcase_18 AC 81 ms
72,096 KB
testcase_19 AC 126 ms
77,320 KB
testcase_20 AC 49 ms
60,088 KB
testcase_21 AC 42 ms
52,580 KB
testcase_22 AC 99 ms
76,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
n,m=map(int,input().split())
inf=float('inf')
d=[[inf]*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]=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 seq in combinations(range(n),3):
    x,y,z=seq
    if d[x][y]!=2 and d[y][z]!=2 and d[z][x]!=2:
        ans+=1
print(ans)
0