結果

問題 No.488 四角関係
ユーザー daku9640daku9640
提出日時 2018-08-31 21:33:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,709 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,480 KB
最終ジャッジ日時 2024-09-13 22:46:41
合計ジャッジ時間 18,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 705 ms
44,092 KB
testcase_01 AC 677 ms
44,216 KB
testcase_02 AC 710 ms
44,220 KB
testcase_03 AC 587 ms
44,344 KB
testcase_04 AC 627 ms
44,220 KB
testcase_05 AC 779 ms
43,832 KB
testcase_06 AC 907 ms
44,212 KB
testcase_07 AC 1,062 ms
43,840 KB
testcase_08 AC 1,709 ms
44,480 KB
testcase_09 AC 520 ms
44,096 KB
testcase_10 AC 563 ms
43,716 KB
testcase_11 AC 520 ms
43,840 KB
testcase_12 AC 546 ms
43,832 KB
testcase_13 AC 553 ms
44,092 KB
testcase_14 AC 521 ms
44,088 KB
testcase_15 AC 520 ms
44,216 KB
testcase_16 AC 512 ms
44,224 KB
testcase_17 AC 517 ms
44,092 KB
testcase_18 AC 518 ms
43,972 KB
testcase_19 AC 518 ms
43,848 KB
testcase_20 AC 517 ms
44,228 KB
testcase_21 AC 518 ms
43,832 KB
testcase_22 AC 523 ms
43,832 KB
testcase_23 AC 512 ms
44,220 KB
testcase_24 AC 519 ms
44,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from itertools import combinations

n, m = tuple(int(x) for x in input().split())
mtx = np.zeros((n, n))

for _ in range(m):
    a, b = tuple(int(x) for x in input().split())
    mtx[a][b] = mtx[b][a] = True

def check_square(i, j, k, l):
    return mtx[i][j] and mtx[j][k] and mtx[k][l] and mtx[l][i] and not mtx[i][k] and not mtx[j][l]

cnt = 0

for i, j, k, l in combinations(range(n), 4):
    if check_square(i, j, k, l):
        cnt += 1
    elif check_square(i, k, j, l):
        cnt += 1
    elif check_square(i, j, l, k):
        cnt += 1

print(cnt)
0