結果
問題 | No.118 門松列(2) |
ユーザー |
|
提出日時 | 2018-05-14 14:05:05 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 19 ms / 5,000 ms |
コード長 | 374 bytes |
コンパイル時間 | 518 ms |
コンパイル使用メモリ | 64,000 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 11:19:48 |
合計ジャッジ時間 | 1,666 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
//スマホコーディング #include<iostream> using namespace std; typedef long long ll; int main(){ int n, x; ll A[101] = {}; cin >> n; for(int i = 0; i < n; i++){ cin>>x; A[x]++; } long long ans = 0; for(int i = 1; i <= 98; i++) for(int j = i+1; j <= 99; j++) for(int k = j+1; k <= 100; k++) ans += A[i]*A[j]*A[k]; ans %= 1000000007; cout << ans << endl; return 0; }