結果

問題 No.1904 Never giving up!
ユーザー tobusakanatobusakana
提出日時 2022-10-23 23:51:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 53,888 KB
最終ジャッジ日時 2024-07-02 12:16:09
合計ジャッジ時間 1,582 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 45 ms
53,376 KB
testcase_05 AC 44 ms
53,248 KB
testcase_06 AC 44 ms
53,248 KB
testcase_07 AC 47 ms
53,248 KB
testcase_08 AC 46 ms
53,248 KB
testcase_09 AC 45 ms
53,504 KB
testcase_10 AC 45 ms
53,248 KB
testcase_11 AC 44 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import defaultdict
dic = defaultdict(int)

for a in A:
  dic[a] += 1
  
dic = sorted(dic.items(), key = lambda x:x[0], reverse = True)

rate = 1 # 条件を満たす取り出し方
for number, cnt in dic:
  # rest個の中からcnt個を引く
  for c in range(cnt, 0, -1):
    rate *= c

# 全ての取り出し方
alls = 1
for i in range(1, N + 1):
  alls *= i
  
print(alls // rate)
0