結果

問題 No.118 門松列(2)
ユーザー YamaKasaYamaKasa
提出日時 2018-07-11 00:36:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 620 ms / 5,000 ms
コード長 637 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 59,240 KB
最終ジャッジ日時 2024-09-14 05:01:35
合計ジャッジ時間 13,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 216 ms
57,312 KB
testcase_01 AC 560 ms
59,124 KB
testcase_02 AC 571 ms
59,148 KB
testcase_03 AC 556 ms
59,240 KB
testcase_04 AC 620 ms
59,064 KB
testcase_05 AC 591 ms
59,044 KB
testcase_06 AC 141 ms
54,124 KB
testcase_07 AC 139 ms
53,896 KB
testcase_08 AC 144 ms
54,076 KB
testcase_09 AC 550 ms
58,992 KB
testcase_10 AC 307 ms
58,492 KB
testcase_11 AC 335 ms
58,868 KB
testcase_12 AC 279 ms
58,200 KB
testcase_13 AC 249 ms
57,308 KB
testcase_14 AC 599 ms
58,912 KB
testcase_15 AC 221 ms
56,804 KB
testcase_16 AC 501 ms
58,844 KB
testcase_17 AC 250 ms
57,344 KB
testcase_18 AC 345 ms
59,108 KB
testcase_19 AC 434 ms
58,984 KB
testcase_20 AC 444 ms
58,992 KB
testcase_21 AC 509 ms
58,936 KB
testcase_22 AC 314 ms
58,388 KB
testcase_23 AC 515 ms
58,892 KB
testcase_24 AC 357 ms
58,756 KB
testcase_25 AC 430 ms
58,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		long []cnt = new long[101];
		Arrays.fill(cnt, 0);
		for(int i = 0; i < N; i++) {
			cnt[scan.nextInt()]++;
		}
		scan.close();

		long d = 1000000007L;
		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++) {
					if(cnt[i] != 0 && cnt[j] != 0 && cnt[k] != 0) {
						ans += (cnt[i] * cnt[j] * cnt[k]) % d;
						ans %= d;
					}
				}
			}
		}
		System.out.println(ans % d);

	}
}
0