結果

問題 No.488 四角関係
ユーザー KazunKazun
提出日時 2020-06-02 18:48:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,888 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,144 KB
最終ジャッジ日時 2024-11-24 07:10:06
合計ジャッジ時間 9,538 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
77,344 KB
testcase_01 AC 520 ms
78,764 KB
testcase_02 AC 431 ms
78,184 KB
testcase_03 AC 338 ms
78,784 KB
testcase_04 AC 415 ms
79,144 KB
testcase_05 AC 609 ms
78,972 KB
testcase_06 AC 463 ms
77,312 KB
testcase_07 AC 1,029 ms
79,092 KB
testcase_08 AC 1,888 ms
78,372 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 255 ms
77,944 KB
testcase_11 AC 131 ms
76,788 KB
testcase_12 AC 346 ms
79,032 KB
testcase_13 AC 272 ms
78,676 KB
testcase_14 AC 150 ms
77,036 KB
testcase_15 AC 88 ms
74,752 KB
testcase_16 AC 44 ms
52,096 KB
testcase_17 AC 41 ms
51,840 KB
testcase_18 AC 67 ms
65,280 KB
testcase_19 AC 76 ms
69,504 KB
testcase_20 AC 49 ms
58,752 KB
testcase_21 AC 43 ms
52,096 KB
testcase_22 AC 51 ms
59,776 KB
testcase_23 AC 43 ms
51,968 KB
testcase_24 AC 78 ms
70,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())

E=set()
for i in range(M):
    a,b=map(int,input().split())
    E.add((a,b))

def f(a,b):
    return (min(a,b),max(a,b)) in E


S=0
for x in range(N):
    for y in range(N):
        if x!=y:
            for z in range(N):
                if x!=z and y!=z:
                    for w in range(N):
                        if x!=w and y!=w and z!=w:
                            S+=(f(x,y) and f(y,z) and f(z,w) and f(w,x) and (not f(x,z)) and (not f(y,w)))
                                
print(S//8)
0