結果

問題 No.118 門松列(2)
ユーザー tsunabittsunabit
提出日時 2020-03-02 20:43:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 550 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 3,298 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 48,124 KB
最終ジャッジ日時 2024-10-13 21:17:10
合計ジャッジ時間 14,012 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
45,644 KB
testcase_01 AC 550 ms
48,008 KB
testcase_02 AC 524 ms
48,124 KB
testcase_03 AC 526 ms
47,932 KB
testcase_04 AC 507 ms
47,660 KB
testcase_05 AC 526 ms
48,068 KB
testcase_06 AC 128 ms
40,068 KB
testcase_07 AC 136 ms
40,984 KB
testcase_08 AC 138 ms
41,052 KB
testcase_09 AC 513 ms
47,852 KB
testcase_10 AC 281 ms
47,428 KB
testcase_11 AC 304 ms
47,476 KB
testcase_12 AC 255 ms
47,124 KB
testcase_13 AC 228 ms
45,780 KB
testcase_14 AC 510 ms
47,860 KB
testcase_15 AC 197 ms
43,244 KB
testcase_16 AC 430 ms
47,652 KB
testcase_17 AC 222 ms
45,900 KB
testcase_18 AC 307 ms
47,728 KB
testcase_19 AC 394 ms
47,604 KB
testcase_20 AC 413 ms
47,760 KB
testcase_21 AC 489 ms
47,588 KB
testcase_22 AC 313 ms
47,828 KB
testcase_23 AC 464 ms
47,636 KB
testcase_24 AC 336 ms
47,556 KB
testcase_25 AC 338 ms
46,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No118 {
	public static void main(String[] args) {
			Scanner s = new Scanner(System.in);
			int n = s.nextInt();
			int mod = 1000000007;
			int[] a = new int[100];
			Arrays.fill(a, 0);
			for(int i = 0; i < n; i++) a[s.nextInt()-1]++;
			long ss = 0;
			for(int i = 0; i < a.length; i++) {
				for(int j = i+1; j < a.length; j++) {
					for(int k = j+1; k < a.length; k++) {
						ss += (long)a[i] * a[j] * a[k] % mod;
					}
				}
			}
			System.out.println(ss % mod);
 	}
}
0