結果
問題 | No.118 門松列(2) |
ユーザー |
![]() |
提出日時 | 2016-12-03 03:11:01 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 524 ms / 5,000 ms |
コード長 | 615 bytes |
コンパイル時間 | 2,481 ms |
コンパイル使用メモリ | 77,332 KB |
実行使用メモリ | 48,184 KB |
最終ジャッジ日時 | 2024-11-27 17:51:02 |
合計ジャッジ時間 | 11,471 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); long [] a = new long [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); } }