結果

問題 No.118 門松列(2)
ユーザー YamaKasaYamaKasa
提出日時 2018-07-11 20:57:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 542 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 47,884 KB
最終ジャッジ日時 2024-09-21 20:40:16
合計ジャッジ時間 12,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
45,408 KB
testcase_01 AC 542 ms
47,544 KB
testcase_02 AC 523 ms
47,648 KB
testcase_03 AC 410 ms
46,804 KB
testcase_04 AC 523 ms
47,884 KB
testcase_05 AC 535 ms
47,692 KB
testcase_06 AC 111 ms
39,748 KB
testcase_07 AC 124 ms
41,076 KB
testcase_08 AC 122 ms
40,896 KB
testcase_09 AC 473 ms
47,508 KB
testcase_10 AC 287 ms
47,052 KB
testcase_11 AC 308 ms
47,504 KB
testcase_12 AC 250 ms
46,936 KB
testcase_13 AC 227 ms
45,400 KB
testcase_14 AC 481 ms
47,808 KB
testcase_15 AC 183 ms
43,220 KB
testcase_16 AC 416 ms
47,488 KB
testcase_17 AC 214 ms
45,728 KB
testcase_18 AC 284 ms
47,268 KB
testcase_19 AC 420 ms
47,708 KB
testcase_20 AC 408 ms
47,680 KB
testcase_21 AC 482 ms
47,844 KB
testcase_22 AC 265 ms
47,180 KB
testcase_23 AC 504 ms
47,436 KB
testcase_24 AC 309 ms
47,340 KB
testcase_25 AC 407 ms
47,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		long []cnt = new long[101];
		Arrays.fill(cnt, 0);
		for(int i = 0; i < N; i++) {
			cnt[scan.nextInt()]++;
		}
		scan.close();

		long s1 = 0;
		long s2 = 0;
		long s3 = 0;
		for(int i = 1; i <= 100; i++) {
			s1 += cnt[i];
			s2 += cnt[i] * cnt[i];
			s3 += cnt[i] * cnt[i] * cnt[i];
		}
		long ans = (s1 * s1 * s1 -3 * s1 * s2 + 2 * s3)/ 6;
		long d = 1000000007L;
		System.out.println(ans % d);



	}
}
0