結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 34 ms
10,496 KB
testcase_02 AC 33 ms
10,496 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 90 ms
10,624 KB
testcase_05 AC 47 ms
10,752 KB
testcase_06 AC 154 ms
10,624 KB
testcase_07 AC 388 ms
10,624 KB
testcase_08 AC 48 ms
10,752 KB
testcase_09 AC 127 ms
10,368 KB
testcase_10 AC 79 ms
10,496 KB
testcase_11 TLE -
testcase_12 AC 198 ms
10,496 KB
testcase_13 AC 68 ms
10,624 KB
testcase_14 AC 488 ms
10,752 KB
testcase_15 AC 186 ms
10,496 KB
testcase_16 AC 78 ms
10,496 KB
testcase_17 AC 29 ms
10,496 KB
testcase_18 AC 44 ms
10,624 KB
testcase_19 AC 190 ms
10,752 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 28 ms
10,496 KB
testcase_22 AC 111 ms
10,752 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