結果

問題 No.118 門松列(2)
ユーザー ぴろずぴろず
提出日時 2016-02-18 15:44:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 585 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 3,384 ms
コンパイル使用メモリ 73,744 KB
実行使用メモリ 47,984 KB
最終ジャッジ日時 2024-10-09 07:54:27
合計ジャッジ時間 13,926 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
45,636 KB
testcase_01 AC 517 ms
47,792 KB
testcase_02 AC 563 ms
47,792 KB
testcase_03 AC 541 ms
47,940 KB
testcase_04 AC 585 ms
47,984 KB
testcase_05 AC 565 ms
47,872 KB
testcase_06 AC 128 ms
41,212 KB
testcase_07 AC 127 ms
41,016 KB
testcase_08 AC 115 ms
39,708 KB
testcase_09 AC 584 ms
47,828 KB
testcase_10 AC 287 ms
47,212 KB
testcase_11 AC 319 ms
47,136 KB
testcase_12 AC 271 ms
46,572 KB
testcase_13 AC 230 ms
45,488 KB
testcase_14 AC 562 ms
47,952 KB
testcase_15 AC 194 ms
42,908 KB
testcase_16 AC 448 ms
47,616 KB
testcase_17 AC 235 ms
45,864 KB
testcase_18 AC 330 ms
47,564 KB
testcase_19 AC 429 ms
47,728 KB
testcase_20 AC 387 ms
46,644 KB
testcase_21 AC 520 ms
47,888 KB
testcase_22 AC 331 ms
47,668 KB
testcase_23 AC 486 ms
47,788 KB
testcase_24 AC 333 ms
47,876 KB
testcase_25 AC 415 ms
47,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no118a;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[100];
		for(int i=0;i<n;i++) {
			a[sc.nextInt()-1]++;
		}
		long s = n;
		long sq = 0;
		long cb = 0;
		for(int i=0;i<100;i++) {
			sq += (long) a[i] * a[i];
			cb += (long) a[i] * a[i] * a[i];
		}
		long ans = (s * s * s - 3 * s * sq + 2 * cb) / 6;
		System.out.println(ans % 1000000007);
	}

}
0