結果

問題 No.1904 Never giving up!
コンテスト
ユーザー norioc
提出日時 2025-11-25 02:51:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 60,100 KB
最終ジャッジ日時 2025-11-25 02:51:46
合計ジャッジ時間 1,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from collections import Counter
from math import factorial, prod

N = int(input())
A = list(map(int, input().split()))

freq = Counter(A)
num = factorial(N)
den = prod([factorial(v) for v in freq.values()])
ans = num // den
print(ans)
0