結果
問題 |
No.118 門松列(2)
|
ユーザー |
![]() |
提出日時 | 2016-12-03 03:06:42 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 617 bytes |
コンパイル時間 | 3,903 ms |
コンパイル使用メモリ | 74,396 KB |
実行使用メモリ | 56,032 KB |
最終ジャッジ日時 | 2024-11-27 17:49:48 |
合計ジャッジ時間 | 7,260 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 2 RE * 24 |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = 6;//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); } }