結果

問題 No.118 門松列(2)
ユーザー htensaihtensai
提出日時 2019-12-05 12:46:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 556 ms / 5,000 ms
コード長 949 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 78,248 KB
実行使用メモリ 59,636 KB
最終ジャッジ日時 2024-12-17 18:42:58
合計ジャッジ時間 13,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
57,336 KB
testcase_01 AC 534 ms
59,472 KB
testcase_02 AC 556 ms
59,228 KB
testcase_03 AC 552 ms
59,444 KB
testcase_04 AC 554 ms
59,344 KB
testcase_05 AC 502 ms
59,636 KB
testcase_06 AC 124 ms
54,004 KB
testcase_07 AC 122 ms
54,032 KB
testcase_08 AC 122 ms
54,112 KB
testcase_09 AC 547 ms
59,368 KB
testcase_10 AC 265 ms
58,712 KB
testcase_11 AC 331 ms
59,068 KB
testcase_12 AC 258 ms
58,096 KB
testcase_13 AC 232 ms
57,648 KB
testcase_14 AC 503 ms
59,400 KB
testcase_15 AC 194 ms
56,484 KB
testcase_16 AC 472 ms
59,264 KB
testcase_17 AC 220 ms
57,400 KB
testcase_18 AC 324 ms
59,012 KB
testcase_19 AC 443 ms
58,924 KB
testcase_20 AC 405 ms
59,116 KB
testcase_21 AC 505 ms
59,136 KB
testcase_22 AC 275 ms
58,832 KB
testcase_23 AC 496 ms
59,448 KB
testcase_24 AC 347 ms
59,400 KB
testcase_25 AC 406 ms
59,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		HashMap<Integer, Integer> map = new HashMap<>();
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    if (map.containsKey(x)) {
		        map.put(x, map.get(x) + 1);
		    } else {
		        map.put(x, 1);
		    }
		}
		int length = map.size();
		int[] arr = new int[length + 1];
		int[] sums = new int[length + 1];
		int[] totals = new int[length + 1];
		int idx = 1;
		for (int x : map.values()) {
		    arr[idx] = x;
		    sums[idx] = sums[idx - 1] + arr[idx];
		    sums[idx] %= MOD;
		    totals[idx] = (int)((long)(arr[idx]) * sums[idx - 1] + totals[idx - 1] % MOD);
		    idx++;
		}
		long ans = 0;
		for (int i = length; i >= 1; i--) {
		    ans += (long)(arr[i]) * totals[i - 1];
		    ans %= MOD;
		}
	    System.out.println(ans);
	}
}
	
0