結果

問題 No.118 門松列(2)
ユーザー ぴろずぴろず
提出日時 2016-02-18 15:43:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 615 ms / 5,000 ms
コード長 452 bytes
コンパイル時間 2,333 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 48,388 KB
最終ジャッジ日時 2024-10-09 07:53:52
合計ジャッジ時間 13,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
45,712 KB
testcase_01 AC 615 ms
48,388 KB
testcase_02 AC 585 ms
48,120 KB
testcase_03 AC 604 ms
48,212 KB
testcase_04 AC 539 ms
47,884 KB
testcase_05 AC 531 ms
48,032 KB
testcase_06 AC 170 ms
41,824 KB
testcase_07 AC 156 ms
41,888 KB
testcase_08 AC 151 ms
41,672 KB
testcase_09 AC 588 ms
48,328 KB
testcase_10 AC 302 ms
47,672 KB
testcase_11 AC 339 ms
47,876 KB
testcase_12 AC 279 ms
46,924 KB
testcase_13 AC 251 ms
46,108 KB
testcase_14 AC 573 ms
48,236 KB
testcase_15 AC 210 ms
43,268 KB
testcase_16 AC 465 ms
48,076 KB
testcase_17 AC 231 ms
45,876 KB
testcase_18 AC 357 ms
47,876 KB
testcase_19 AC 433 ms
48,164 KB
testcase_20 AC 434 ms
48,092 KB
testcase_21 AC 508 ms
48,044 KB
testcase_22 AC 308 ms
47,732 KB
testcase_23 AC 517 ms
47,928 KB
testcase_24 AC 357 ms
47,948 KB
testcase_25 AC 414 ms
47,776 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 += (long) a[i] * a[j] * a[k];
				}
			}
		}
		System.out.println(ans % 1000000007);
	}

}
0