結果

問題 No.118 門松列(2)
ユーザー ぴろずぴろず
提出日時 2015-01-07 00:19:55
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 473 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 61,216 KB
最終ジャッジ日時 2024-06-13 02:51:30
合計ジャッジ時間 13,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 587 ms
59,364 KB
testcase_02 AC 572 ms
59,668 KB
testcase_03 AC 545 ms
59,372 KB
testcase_04 AC 539 ms
61,216 KB
testcase_05 AC 533 ms
59,052 KB
testcase_06 AC 138 ms
54,292 KB
testcase_07 AC 137 ms
53,976 KB
testcase_08 AC 139 ms
54,112 KB
testcase_09 AC 562 ms
59,508 KB
testcase_10 AC 292 ms
58,324 KB
testcase_11 AC 324 ms
58,936 KB
testcase_12 AC 264 ms
58,164 KB
testcase_13 AC 227 ms
57,548 KB
testcase_14 AC 571 ms
59,392 KB
testcase_15 AC 203 ms
56,508 KB
testcase_16 AC 454 ms
59,136 KB
testcase_17 AC 234 ms
57,448 KB
testcase_18 AC 344 ms
58,656 KB
testcase_19 AC 418 ms
59,304 KB
testcase_20 AC 423 ms
59,308 KB
testcase_21 AC 492 ms
59,260 KB
testcase_22 AC 295 ms
58,572 KB
testcase_23 AC 497 ms
59,364 KB
testcase_24 AC 343 ms
59,200 KB
testcase_25 AC 409 ms
59,096 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 += a[i] * a[i];
			cb += a[i] * a[i] * a[i];
		}
		long ans = (s * s * s - 3 * s * sq + 2 * cb) / 6;
		System.out.println(ans % 1000000007);
	}

}
0