結果
問題 | No.1904 Never giving up! |
ユーザー |
![]() |
提出日時 | 2022-04-15 21:53:56 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 185 ms / 2,000 ms |
コード長 | 1,647 bytes |
コンパイル時間 | 364 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 94,476 KB |
最終ジャッジ日時 | 2024-12-25 00:29:32 |
合計ジャッジ時間 | 3,687 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 9 |
ソースコード
# region template from typing import Generic, Iterable, Iterator, TypeVar, Union, List from bisect import bisect_left, bisect_right from bisect import bisect_left, bisect_right, insort from email.policy import default import re import typing import math import sys import copy import itertools import collections import bisect import heapq import decimal import random import gc def ni(): return int(sys.stdin.readline()) def ns(): return map(int, sys.stdin.readline().split()) def ns1(): return map(lambda x: int(x)-1, sys.stdin.readline().split()) def na(): return list(map(int, sys.stdin.readline().split())) def na1(): return list(map(lambda x: int(x)-1, sys.stdin.readline().split())) def nall(): return list(map(int, sys.stdin.read().split())) def flush(): return sys.stdout.flush() def nib(): return int(sys.stdin.buffer.readline()) def nsb(): return map(int, sys.stdin.buffer.readline().split()) def ns1b(): return map(lambda x: int(x)-1, sys.stdin.buffer.readline().split()) def nab(): return list(map(int, sys.stdin.buffer.readline().split())) def na1b(): return list(map(lambda x: int(x)-1, sys.stdin.buffer.readline().split())) def nallb(): return list(map(int, sys.stdin.buffer.read().split())) # limregion # sys.setrecursionlimit(10**7+1) inf = 10**20 # mod = 10**9+7 mod = 998244353 def main(): N = ni() A = na() cnt = collections.Counter(A) l = [[k, v] for k, v in cnt.items()] perm = [0,1] for i in range(2, 25): perm.append(perm[-1]*i) bunshi, bunbo = 1, perm[N] for k, v in l: bunshi *= perm[v] print((bunbo+bunshi-1)//bunshi) if __name__ == '__main__': main()