結果

問題 No.118 門松列(2)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-03 03:07:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 613 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 59,516 KB
最終ジャッジ日時 2024-11-27 17:50:45
合計ジャッジ時間 13,031 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 566 ms
59,016 KB
testcase_02 AC 523 ms
59,216 KB
testcase_03 AC 571 ms
59,412 KB
testcase_04 AC 577 ms
59,044 KB
testcase_05 AC 572 ms
59,240 KB
testcase_06 AC 161 ms
54,080 KB
testcase_07 AC 158 ms
54,048 KB
testcase_08 AC 144 ms
54,200 KB
testcase_09 AC 562 ms
59,516 KB
testcase_10 AC 287 ms
58,704 KB
testcase_11 AC 328 ms
58,772 KB
testcase_12 AC 275 ms
58,176 KB
testcase_13 AC 240 ms
57,316 KB
testcase_14 AC 553 ms
59,268 KB
testcase_15 AC 209 ms
56,600 KB
testcase_16 AC 456 ms
59,152 KB
testcase_17 AC 243 ms
57,620 KB
testcase_18 AC 335 ms
59,152 KB
testcase_19 AC 418 ms
59,200 KB
testcase_20 AC 418 ms
59,232 KB
testcase_21 AC 426 ms
57,776 KB
testcase_22 AC 298 ms
58,776 KB
testcase_23 AC 498 ms
59,024 KB
testcase_24 AC 363 ms
58,716 KB
testcase_25 AC 412 ms
59,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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++){
            int t=sc.nextInt();
            a[t-1]++;
        }
        long total=0;
        for(int i=0; i<100; i++){
            for(int j=i+1; j<100; j++){
                for(int k=j+1; k<100; k++){
                    total+=a[i]*a[j]*a[k];
                }
            }
        }
        int m=(int)Math.pow(10,9)+7;
        total%=m;
        System.out.println(total);
    }
}
0