結果

問題 No.1147 土偶Ⅱ
ユーザー roarisroaris
提出日時 2020-08-05 18:48:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 500 ms
コード長 507 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 78,588 KB
最終ジャッジ日時 2024-10-11 10:12:23
合計ジャッジ時間 3,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,228 KB
testcase_01 AC 39 ms
53,652 KB
testcase_02 AC 37 ms
53,120 KB
testcase_03 AC 39 ms
52,664 KB
testcase_04 AC 121 ms
76,764 KB
testcase_05 AC 65 ms
72,248 KB
testcase_06 AC 191 ms
78,588 KB
testcase_07 AC 150 ms
76,400 KB
testcase_08 AC 78 ms
76,044 KB
testcase_09 AC 183 ms
77,944 KB
testcase_10 AC 122 ms
76,996 KB
testcase_11 AC 215 ms
76,932 KB
testcase_12 AC 136 ms
76,472 KB
testcase_13 AC 94 ms
75,932 KB
testcase_14 AC 278 ms
76,892 KB
testcase_15 AC 164 ms
77,276 KB
testcase_16 AC 100 ms
76,224 KB
testcase_17 AC 51 ms
62,860 KB
testcase_18 AC 70 ms
73,972 KB
testcase_19 AC 190 ms
78,276 KB
testcase_20 AC 49 ms
60,868 KB
testcase_21 AC 39 ms
52,528 KB
testcase_22 AC 174 ms
77,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(x, y):
    for z in range(n):
        if z!=x and z!=y and G[z][x]==1 and G[z][y]==1 and G[x][y]==0:
            return False
    
    return True

n, m = map(int, input().split())
G = [[0]*n for _ in range(n)]

for _ in range(m):
    a, b = map(int, input().split())
    G[a-1][b-1] = 1
    G[b-1][a-1] = 1

ans = 0

for i in range(n):
    for j in range(i+1, n):
        for k in range(j+1, n):
            if check(i, j) and check(j, k) and check(k, i):
                ans += 1
    
print(ans)
0