結果
問題 | No.488 四角関係 |
ユーザー | kimiyuki |
提出日時 | 2017-02-24 23:35:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 279 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,568 KB |
最終ジャッジ日時 | 2024-06-10 23:28:42 |
合計ジャッジ時間 | 24,146 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3,055 ms
10,752 KB |
testcase_01 | AC | 1,919 ms
10,880 KB |
testcase_02 | AC | 2,948 ms
10,752 KB |
testcase_03 | AC | 933 ms
10,752 KB |
testcase_04 | AC | 1,561 ms
10,752 KB |
testcase_05 | AC | 3,532 ms
10,752 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
from itertools import* n,m=map(int,input().split()) g=[[0]*n for _ in[0]*n] for _ in[0]*m: a,b=map(int,input().split()) g[a-1][b-1]=g[b-1][a-1]=-1 c=0 for i,j,k,l in product(range(n),repeat=4):c+=len({i,j,k,l})==4 * g[i][j]*g[j][k]*g[k][l]*g[l][i]*~g[i][k]*~g[j][l] print(c//8)