結果

問題 No.1147 土偶Ⅱ
ユーザー kozykozy
提出日時 2020-08-05 09:32:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 300 ms / 500 ms
コード長 555 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-12-30 03:54:16
合計ジャッジ時間 3,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 66 ms
11,904 KB
testcase_05 AC 36 ms
10,880 KB
testcase_06 AC 151 ms
13,568 KB
testcase_07 AC 173 ms
17,792 KB
testcase_08 AC 36 ms
11,136 KB
testcase_09 AC 123 ms
12,928 KB
testcase_10 AC 58 ms
11,648 KB
testcase_11 AC 300 ms
22,144 KB
testcase_12 AC 91 ms
14,080 KB
testcase_13 AC 44 ms
11,648 KB
testcase_14 AC 229 ms
19,328 KB
testcase_15 AC 115 ms
13,824 KB
testcase_16 AC 47 ms
11,648 KB
testcase_17 AC 33 ms
10,752 KB
testcase_18 AC 37 ms
11,008 KB
testcase_19 AC 155 ms
14,464 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 125 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
X=list()
Y=list()
N,M=map(int,input().split())
L=[[] for j in range(N)]
R=[[] for j in range(N)]
for i in range(M):
    x,y=map(int,input().split())
    L[x-1].append(y)
    L[y-1].append(x)
for i in range(N):
    for j in range(len(L[i])):
        R[i].extend(L[L[i][j]-1])
    R[i]=[l for l in R[i] if l not in L[i]]
R=[list(set(i)) for i in R]
ans=0
p_list = list(itertools.combinations(range(1,N+1), 3))
for i in range(len(p_list)):
  a,b,c=p_list[i]
  if b not in R[a-1] and c not in R[a-1] and b not in R[c-1]:
    ans+=1
print(ans)
0