結果

問題 No.118 門松列(2)
ユーザー nnasen
提出日時 2018-01-07 15:41:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 1,601 ms
コンパイル使用メモリ 166,176 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 09:58:56
合計ジャッジ時間 3,044 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i,a,b) for(int i = (a); i < (b); ++i)
#define REP(i,n) FOR(i,0,n)
#define RREP(i,n) for(int i = (n) - 1; (i) >= 0; --i)
#define SZ(n) (int)(n).size()
#define ALL(n) (n).begin(), (n).end()
#define MOD 1e9 + 7
#define INF 100000000
using namespace std;
typedef long long LL;
typedef vector<int> VI;
typedef pair<int, int> PI;


int main() {
	int n;
	cin >> n;
	int a[101] = {};
	REP(i, n) {
		int t = 0;
		cin >> t;
		a[t]++;
	}
	LL ans = 0;
	FOR(i, 1, 101) {
		FOR(j, i + 1, 101) {
			FOR(k, j + 1, 101) {
				ans += 1LL * a[i] * a[j] * a[k];
			}
		}
	}
	cout << ans % LL(MOD) << endl;
	return 0;
}
0