ABC209 C - Not Equal에서 배운





음. 결국, 계승으로 갈 수 있는 것은?
수형도로서는 정렬하면 갈 수 있지?

. . 갈 수 있었다.

NotEqual.py
n = int(input())
C = list(map(int,input().split()))
C.sort()
score = 1
for i in range(n):
    score *= C[i]-i
    score %= (7+10**9)
print(score)

해설도 그렇다.

좋은 웹페이지 즐겨찾기