結果

問題 No.1904 Never giving up!
ユーザー tentententen
提出日時 2022-08-09 18:04:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 1,371 bytes
コンパイル時間 4,032 ms
コンパイル使用メモリ 77,896 KB
実行使用メモリ 50,328 KB
最終ジャッジ日時 2024-09-19 22:47:02
合計ジャッジ時間 5,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,120 KB
testcase_01 AC 50 ms
50,272 KB
testcase_02 AC 52 ms
49,964 KB
testcase_03 AC 51 ms
50,216 KB
testcase_04 AC 53 ms
50,256 KB
testcase_05 AC 54 ms
49,888 KB
testcase_06 AC 52 ms
50,328 KB
testcase_07 AC 52 ms
50,192 KB
testcase_08 AC 52 ms
50,320 KB
testcase_09 AC 52 ms
50,248 KB
testcase_10 AC 52 ms
49,884 KB
testcase_11 AC 52 ms
50,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        HashMap<Integer, Integer> counts = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            counts.put(x, counts.getOrDefault(x, 0) + 1);
        }
        long ans = fact(n);
        for (int x : counts.values()) {
            ans /= fact(x);
        }
        System.out.println(ans);
    }
    
    static long fact(int x) {
        if (x == 0) {
            return 1;
        } else {
            return fact(x - 1) * x;
        }
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0