結果
問題 | No.1904 Never giving up! |
ユーザー | tenten |
提出日時 | 2024-07-30 08:42:55 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 64 ms / 2,000 ms |
コード長 | 1,576 bytes |
コンパイル時間 | 5,550 ms |
コンパイル使用メモリ | 90,900 KB |
実行使用メモリ | 50,708 KB |
最終ジャッジ日時 | 2024-07-30 08:43:02 |
合計ジャッジ時間 | 5,704 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,636 KB |
testcase_01 | AC | 57 ms
50,520 KB |
testcase_02 | AC | 56 ms
50,344 KB |
testcase_03 | AC | 57 ms
50,400 KB |
testcase_04 | AC | 59 ms
50,692 KB |
testcase_05 | AC | 56 ms
50,656 KB |
testcase_06 | AC | 64 ms
50,516 KB |
testcase_07 | AC | 59 ms
50,412 KB |
testcase_08 | AC | 57 ms
50,660 KB |
testcase_09 | AC | 56 ms
50,644 KB |
testcase_10 | AC | 56 ms
50,656 KB |
testcase_11 | AC | 57 ms
50,708 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); TreeMap<Integer, Integer> counts = new TreeMap<>((a, b) -> b - a); for (int i = 0; i < n; i++) { int x = sc.nextInt(); counts.put(x, counts.getOrDefault(x, 0) + 1); } long base = 1; long value = 1; for (int x : counts.values()) { for (int i = x; i >= 1; i--) { base *= n--; value *= i; } } System.out.println(base / value); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }