結果

問題 No.1147 土偶Ⅱ
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 13:43:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 481 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-02 22:26:52
合計ジャッジ時間 4,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 84 ms
10,624 KB
testcase_05 AC 42 ms
10,752 KB
testcase_06 AC 172 ms
10,496 KB
testcase_07 AC 402 ms
10,752 KB
testcase_08 AC 52 ms
10,496 KB
testcase_09 AC 135 ms
10,624 KB
testcase_10 AC 81 ms
10,496 KB
testcase_11 TLE -
testcase_12 AC 210 ms
10,496 KB
testcase_13 AC 75 ms
10,496 KB
testcase_14 TLE -
testcase_15 AC 186 ms
10,624 KB
testcase_16 AC 77 ms
10,496 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 47 ms
10,496 KB
testcase_19 AC 201 ms
10,624 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 120 ms
10,624 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