結果

問題 No.1147 土偶Ⅱ
ユーザー rlangevinrlangevin
提出日時 2023-01-15 14:08:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 475 ms / 500 ms
コード長 627 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 108,388 KB
最終ジャッジ日時 2024-06-08 17:20:31
合計ジャッジ時間 5,300 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,472 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 144 ms
77,816 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 366 ms
80,896 KB
testcase_07 AC 475 ms
93,888 KB
testcase_08 AC 63 ms
76,572 KB
testcase_09 AC 270 ms
79,948 KB
testcase_10 AC 132 ms
77,688 KB
testcase_11 AC 419 ms
108,388 KB
testcase_12 AC 171 ms
83,988 KB
testcase_13 AC 73 ms
77,168 KB
testcase_14 AC 167 ms
93,676 KB
testcase_15 AC 336 ms
82,944 KB
testcase_16 AC 105 ms
78,096 KB
testcase_17 AC 48 ms
62,848 KB
testcase_18 AC 56 ms
70,528 KB
testcase_19 AC 457 ms
83,584 KB
testcase_20 AC 47 ms
61,824 KB
testcase_21 AC 41 ms
52,480 KB
testcase_22 AC 228 ms
79,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
S = set()
G = [[] for i in range(N)]
for i in range(M):
    a, b = map(int, input().split())
    a, b = a - 1, b - 1
    if (a, b) in S:
        continue
    S.add((a, b))
    S.add((b, a))
    G[a].append(b)
    G[b].append(a)
    
SS = set()
for i in range(N):
    M = len(G[i])
    for x in range(M):
        for y in range(x + 1, M):
            a, b = G[i][x], G[i][y]
            if (a, b) not in S:
                for k in range(N):
                    if k != a and  k != b:
                        SS.add(tuple(sorted([k, a, b])))
print(N * (N - 1) * (N - 2)//6 - len(SS))            
0