結果

問題 No.118 門松列(2)
ユーザー 37zigen37zigen
提出日時 2020-02-18 12:03:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 605 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 77,992 KB
実行使用メモリ 48,188 KB
最終ジャッジ日時 2024-10-06 15:29:34
合計ジャッジ時間 13,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
45,276 KB
testcase_01 AC 605 ms
48,116 KB
testcase_02 AC 568 ms
47,920 KB
testcase_03 AC 581 ms
48,188 KB
testcase_04 AC 535 ms
48,116 KB
testcase_05 AC 571 ms
47,764 KB
testcase_06 AC 117 ms
40,172 KB
testcase_07 AC 128 ms
41,396 KB
testcase_08 AC 131 ms
41,080 KB
testcase_09 AC 508 ms
47,944 KB
testcase_10 AC 285 ms
47,376 KB
testcase_11 AC 332 ms
47,724 KB
testcase_12 AC 257 ms
46,928 KB
testcase_13 AC 237 ms
45,772 KB
testcase_14 AC 533 ms
47,956 KB
testcase_15 AC 193 ms
43,292 KB
testcase_16 AC 446 ms
47,600 KB
testcase_17 AC 230 ms
45,712 KB
testcase_18 AC 309 ms
47,696 KB
testcase_19 AC 400 ms
47,924 KB
testcase_20 AC 437 ms
47,748 KB
testcase_21 AC 506 ms
47,756 KB
testcase_22 AC 292 ms
47,164 KB
testcase_23 AC 477 ms
47,552 KB
testcase_24 AC 330 ms
47,384 KB
testcase_25 AC 445 ms
47,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	final long m=(long)1e9+7;
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int[] cnt=new int[101];
		for(int i=0;i<N;++i) {
			int a=sc.nextInt();
			cnt[a]++;
		}
		long[] dp=new long[3];
		for(int i=0;i<cnt.length;++i) {
			if(cnt[i]==0)continue;
			dp[2]+=dp[1]*cnt[i]%m;
			dp[1]+=dp[0]*cnt[i]%m;
			dp[0]+=cnt[i];
			for(int j=0;j<3;++j)dp[j]%=m;
		}
		System.out.println(dp[2]);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0