結果

問題 No.1147 土偶Ⅱ
ユーザー Akijin_007Akijin_007
提出日時 2022-10-14 18:09:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 500 ms
コード長 930 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 77,152 KB
最終ジャッジ日時 2024-06-26 12:44:03
合計ジャッジ時間 2,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 59 ms
66,304 KB
testcase_05 AC 52 ms
63,488 KB
testcase_06 AC 81 ms
75,580 KB
testcase_07 AC 70 ms
70,148 KB
testcase_08 AC 52 ms
64,512 KB
testcase_09 AC 79 ms
74,752 KB
testcase_10 AC 58 ms
64,896 KB
testcase_11 AC 75 ms
69,248 KB
testcase_12 AC 63 ms
67,968 KB
testcase_13 AC 53 ms
64,128 KB
testcase_14 AC 69 ms
67,200 KB
testcase_15 AC 67 ms
68,864 KB
testcase_16 AC 60 ms
65,792 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 51 ms
62,592 KB
testcase_19 AC 86 ms
77,152 KB
testcase_20 AC 39 ms
52,480 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 75 ms
72,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N, M = map(int, input().split())
to = [set() for i in range(N)]

for i in range(M):
    a, b = map(int, input().split())
    to[a-1].add(b-1)
    to[b-1].add(a-1)

ans = 0

good = [set() for i in range(N)]

for i in range(N-1):
    for j in range(i+1, N):
        if j in to[i]:
            good[i].add(j)
            good[j].add(i)
            continue
        f = 1
        for k in range(N):
            if (k-i)*(k-j) == 0:
                continue
            if k in to[i] and k in to[j]:
                f = 0
                break
        if f == 1:
            good[i].add(j)
            good[j].add(i)

ans = 0
# print(good)

for i in range(N-2):
    for j in range(i+1, N-1):
        for k in range(j+1, N):
            if i in good[j] and j in good[k] and k in good[i]:
                ans += 1
                # print(i, j, k)

print(ans)



0