結果

問題 No.1904 Never giving up!
ユーザー Ameesh SethiAmeesh Sethi
提出日時 2024-07-13 15:54:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 55,048 KB
最終ジャッジ日時 2024-07-13 15:54:47
合計ジャッジ時間 2,185 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,736 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 43 ms
53,680 KB
testcase_03 AC 42 ms
54,060 KB
testcase_04 AC 44 ms
53,828 KB
testcase_05 AC 43 ms
53,752 KB
testcase_06 AC 43 ms
53,972 KB
testcase_07 AC 40 ms
53,508 KB
testcase_08 AC 43 ms
54,024 KB
testcase_09 AC 42 ms
54,264 KB
testcase_10 AC 41 ms
54,492 KB
testcase_11 AC 43 ms
55,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

fac = [1] * (21)
for i in range(1, 21):
    fac[i] = fac[i - 1] * i

n = int(input())
arr = list(map(int, input().split()))
ans = fac[n]
for v in Counter(arr).values():
    ans //= fac[v]
print(ans)

0