From f402a5b785cd99ce530ee49823faed08948d4deb Mon Sep 17 00:00:00 2001 From: heerucan Date: Sun, 3 Apr 2022 15:31:14 +0900 Subject: [PATCH] =?UTF-8?q?[=EC=BD=94=EB=94=A9=ED=85=8C=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EC=B1=85]=20=EB=B3=BC=EB=A7=81=EA=B3=B5=EA=B3=A0=EB=A5=B4?= =?UTF-8?q?=EA=B8=B0=20(#1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...2\263\265\352\263\240\353\245\264\352\270\260.py" | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 "CodingTest/CH3 \352\267\270\353\246\254\353\224\224/\353\263\274\353\247\201\352\263\265\352\263\240\353\245\264\352\270\260.py" diff --git "a/CodingTest/CH3 \352\267\270\353\246\254\353\224\224/\353\263\274\353\247\201\352\263\265\352\263\240\353\245\264\352\270\260.py" "b/CodingTest/CH3 \352\267\270\353\246\254\353\224\224/\353\263\274\353\247\201\352\263\265\352\263\240\353\245\264\352\270\260.py" new file mode 100644 index 0000000..b5d3765 --- /dev/null +++ "b/CodingTest/CH3 \352\267\270\353\246\254\353\224\224/\353\263\274\353\247\201\352\263\265\352\263\240\353\245\264\352\270\260.py" @@ -0,0 +1,12 @@ +import sys +from itertools import combinations + +n, m = list(map(int, input().split())) +k = list(map(int, sys.stdin.readline().split())) + +count = 0 +for i in combinations(k, 2): + if i[0] != i[1]: + count += 1 + +print(count)