結果

問題 No.488 四角関係
ユーザー h_nosonh_noson
提出日時 2017-06-15 20:36:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 11,860 KB
実行使用メモリ 10,076 KB
最終ジャッジ日時 2023-10-25 07:53:13
合計ジャッジ時間 2,146 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,028 KB
testcase_01 AC 42 ms
10,040 KB
testcase_02 AC 35 ms
10,036 KB
testcase_03 AC 33 ms
10,036 KB
testcase_04 AC 37 ms
10,036 KB
testcase_05 AC 46 ms
10,040 KB
testcase_06 AC 31 ms
10,032 KB
testcase_07 AC 76 ms
10,044 KB
testcase_08 AC 80 ms
10,076 KB
testcase_09 AC 29 ms
10,028 KB
testcase_10 AC 30 ms
10,032 KB
testcase_11 AC 29 ms
10,028 KB
testcase_12 AC 34 ms
10,032 KB
testcase_13 AC 32 ms
10,032 KB
testcase_14 AC 30 ms
10,028 KB
testcase_15 AC 28 ms
10,028 KB
testcase_16 AC 27 ms
10,028 KB
testcase_17 AC 27 ms
10,028 KB
testcase_18 AC 28 ms
10,028 KB
testcase_19 AC 28 ms
10,028 KB
testcase_20 AC 28 ms
10,028 KB
testcase_21 AC 29 ms
10,028 KB
testcase_22 AC 29 ms
10,028 KB
testcase_23 AC 28 ms
10,028 KB
testcase_24 AC 28 ms
10,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split(' '))
e = [[] for i in range(n)]
for i in range(m):
    a,b = map(int,input().split(' '))
    e[a].append(b)
    e[b].append(a)

ans = 0
for u in range(n):
    for v in e[u]:
        for s in e[u]:
            if v < s and s not in e[v]:
                ans += len(set(e[v])&set(e[s])-set(e[u])-set({u}))
print(ans//4)
0