結果

問題 No.1904 Never giving up!
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-04-15 21:45:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 53,280 KB
最終ジャッジ日時 2024-06-07 02:54:11
合計ジャッジ時間 1,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,636 KB
testcase_01 AC 38 ms
52,400 KB
testcase_02 AC 38 ms
53,128 KB
testcase_03 AC 39 ms
52,552 KB
testcase_04 AC 38 ms
51,692 KB
testcase_05 AC 39 ms
52,392 KB
testcase_06 AC 38 ms
52,924 KB
testcase_07 AC 39 ms
52,068 KB
testcase_08 AC 39 ms
53,280 KB
testcase_09 AC 39 ms
52,628 KB
testcase_10 AC 40 ms
52,556 KB
testcase_11 AC 39 ms
52,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from _collections import defaultdict
n=int(input())
a=list(map(int,input().split()))
kai=[1]*22
for i in range(1,21):
    kai[i]=kai[i-1]*i

ans=1
cnt=defaultdict(int)
for x in a:
    cnt[x]+=1
for x in cnt:
    ans*=kai[cnt[x]]
print(kai[n]//ans)

0