結果

問題 No.1147 土偶Ⅱ
ユーザー rlangevinrlangevin
提出日時 2023-01-15 14:08:30
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 627 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 108,272 KB
最終ジャッジ日時 2024-12-22 19:22:15
合計ジャッジ時間 5,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,472 KB
testcase_01 AC 44 ms
53,708 KB
testcase_02 AC 38 ms
52,124 KB
testcase_03 AC 39 ms
52,528 KB
testcase_04 AC 150 ms
77,644 KB
testcase_05 AC 38 ms
53,420 KB
testcase_06 AC 403 ms
80,732 KB
testcase_07 TLE -
testcase_08 AC 66 ms
76,380 KB
testcase_09 AC 290 ms
80,184 KB
testcase_10 AC 133 ms
78,056 KB
testcase_11 AC 452 ms
108,272 KB
testcase_12 AC 193 ms
83,852 KB
testcase_13 AC 80 ms
77,160 KB
testcase_14 AC 176 ms
93,680 KB
testcase_15 AC 383 ms
82,892 KB
testcase_16 AC 111 ms
77,772 KB
testcase_17 AC 48 ms
63,476 KB
testcase_18 AC 57 ms
71,484 KB
testcase_19 TLE -
testcase_20 AC 50 ms
62,740 KB
testcase_21 AC 38 ms
53,388 KB
testcase_22 AC 253 ms
79,084 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