結果

問題 No.118 門松列(2)
ユーザー kenkooookenkoooo
提出日時 2015-04-07 01:05:47
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 619 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 73,720 KB
実行使用メモリ 48,184 KB
最終ジャッジ日時 2024-07-04 03:30:02
合計ジャッジ時間 11,526 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 461 ms
48,092 KB
testcase_02 AC 470 ms
47,772 KB
testcase_03 AC 530 ms
47,972 KB
testcase_04 AC 509 ms
48,036 KB
testcase_05 AC 511 ms
48,092 KB
testcase_06 AC 118 ms
40,776 KB
testcase_07 AC 121 ms
40,240 KB
testcase_08 AC 115 ms
40,788 KB
testcase_09 AC 411 ms
46,508 KB
testcase_10 AC 273 ms
47,644 KB
testcase_11 AC 298 ms
47,652 KB
testcase_12 AC 246 ms
47,208 KB
testcase_13 AC 225 ms
45,992 KB
testcase_14 AC 503 ms
47,820 KB
testcase_15 AC 183 ms
43,436 KB
testcase_16 AC 349 ms
46,496 KB
testcase_17 AC 222 ms
45,840 KB
testcase_18 AC 303 ms
47,592 KB
testcase_19 AC 352 ms
47,748 KB
testcase_20 AC 336 ms
46,536 KB
testcase_21 AC 450 ms
48,132 KB
testcase_22 AC 308 ms
47,468 KB
testcase_23 AC 378 ms
46,496 KB
testcase_24 AC 325 ms
48,184 KB
testcase_25 AC 315 ms
46,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	private static final int MOD = 1000000007;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] kado_kinds = new int[101];

		for (int i = 0; i < N; i++) {
			int length = sc.nextInt();
			kado_kinds[length]++;
		}
		sc.close();

		long ans = 0;
		for (int i = 1; i <= 100; i++) {
			for (int j = i + 1; j <= 100; j++) {
				for (int k = j + 1; k <= 100; k++) {
					int kake = kado_kinds[i] * kado_kinds[j] * kado_kinds[k];
					ans = ans + kake;
					ans = ans % MOD;
				}
			}
		}
		System.out.println(ans);

	}
}
0