結果

問題 No.1904 Never giving up!
ユーザー ShirotsumeShirotsume
提出日時 2022-04-15 21:33:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 51,712 KB
最終ジャッジ日時 2024-12-25 00:04:31
合計ジャッジ時間 1,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

a = list(map(int,input().split()))
a.sort()
cnt = 1
b = []
now = a[0]
for i in range(1, n):
    if now != a[i]:
        b.append(cnt)
        now = a[i]
        cnt = 1
    else:
        cnt += 1
b.append(cnt)

ans = 1

for i in range(1, n + 1):
    ans *= i

for v in b:
    for i in range(1, v + 1):
        ans //= i
print(ans)
0