結果

問題 No.118 門松列(2)
ユーザー ぴろずぴろず
提出日時 2015-01-06 23:30:48
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 445 bytes
コンパイル時間 4,020 ms
コンパイル使用メモリ 73,860 KB
実行使用メモリ 59,444 KB
最終ジャッジ日時 2024-06-13 02:46:57
合計ジャッジ時間 14,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 494 ms
59,236 KB
testcase_02 AC 535 ms
59,364 KB
testcase_03 AC 479 ms
59,444 KB
testcase_04 AC 534 ms
59,236 KB
testcase_05 AC 523 ms
59,088 KB
testcase_06 AC 175 ms
53,912 KB
testcase_07 AC 132 ms
54,180 KB
testcase_08 AC 130 ms
54,056 KB
testcase_09 AC 541 ms
59,152 KB
testcase_10 AC 286 ms
58,756 KB
testcase_11 AC 309 ms
58,624 KB
testcase_12 AC 251 ms
58,392 KB
testcase_13 AC 228 ms
57,628 KB
testcase_14 AC 521 ms
59,236 KB
testcase_15 AC 195 ms
57,072 KB
testcase_16 AC 424 ms
59,240 KB
testcase_17 AC 225 ms
57,552 KB
testcase_18 AC 329 ms
58,812 KB
testcase_19 AC 386 ms
59,156 KB
testcase_20 AC 347 ms
57,680 KB
testcase_21 AC 520 ms
59,100 KB
testcase_22 AC 266 ms
58,684 KB
testcase_23 AC 480 ms
59,292 KB
testcase_24 AC 344 ms
59,236 KB
testcase_25 AC 424 ms
59,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no118;

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 ans = 0;
		for(int i=0;i<100;i++) {
			for(int j=i+1;j<100;j++) {
				for(int k=j+1;k<100;k++) {
					ans += a[i] * a[j] * a[k];
				}
			}
		}
		System.out.println(ans % 1000000007);
	}

}
0