結果

問題 No.1147 土偶Ⅱ
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 13:43:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 500 ms
コード長 481 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 81,588 KB
実行使用メモリ 77,384 KB
最終ジャッジ日時 2024-05-02 22:26:55
合計ジャッジ時間 2,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,756 KB
testcase_01 AC 39 ms
53,368 KB
testcase_02 AC 40 ms
52,808 KB
testcase_03 AC 40 ms
53,496 KB
testcase_04 AC 81 ms
74,904 KB
testcase_05 AC 55 ms
64,096 KB
testcase_06 AC 108 ms
77,040 KB
testcase_07 AC 113 ms
76,792 KB
testcase_08 AC 70 ms
70,960 KB
testcase_09 AC 106 ms
76,992 KB
testcase_10 AC 77 ms
74,540 KB
testcase_11 AC 131 ms
76,556 KB
testcase_12 AC 96 ms
76,704 KB
testcase_13 AC 77 ms
74,692 KB
testcase_14 AC 119 ms
76,668 KB
testcase_15 AC 105 ms
76,656 KB
testcase_16 AC 80 ms
75,740 KB
testcase_17 AC 48 ms
60,736 KB
testcase_18 AC 70 ms
72,752 KB
testcase_19 AC 119 ms
77,384 KB
testcase_20 AC 45 ms
60,012 KB
testcase_21 AC 40 ms
52,864 KB
testcase_22 AC 93 ms
76,964 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