結果

問題 No.1882 Areas of Triangle
ユーザー SotaSota
提出日時 2024-04-09 12:38:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,089 bytes
コンパイル時間 5,405 ms
コンパイル使用メモリ 105,696 KB
実行使用メモリ 13,892 KB
最終ジャッジ日時 2024-04-09 12:40:43
合計ジャッジ時間 12,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,892 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES

#include <iostream>		//cin, cout
#include <vector>		//vector
#include <algorithm>	//sort,min,max,count
#include <string>		//string,getline, to_string
#include <cstdlib>		//abs(int)
#include <utility>		//swap, pair
#include <tuple>        //tuple
#include <deque>		//deque
#include <climits>		//INT_MAX
#include <bitset>		//bitset
#include <cmath>		//sqrt, ceil. M_PI, pow, sin
#include <ios>			//fixed
#include <iomanip>		//setprecision
#include <sstream>		//stringstream
#include <numeric>		//gcd, assumlate
#include <random>		//randam_device
#include <limits>		//numeric_limits
#include <functional>

using namespace std;
constexpr long long int D_MOD = 1000000007;

int main() {

	int64_t N, K;
	cin >> N >> K;

	K = 2 * K;

	vector<int64_t> A(N);
	for (int i = 0; i < N; i++) {
		cin >> A.at(i);
	}

	sort(A.rbegin(), A.rend());

	int64_t ans = 0;
	for (int i = 0; i < N - 1; i++) {
		for (int j = i; j < N; j++) {
			if (A.at(i) * A.at(j) >= K) {
				ans++;
				if (i != j) {
					ans++;
				}
			}
			else {
				break;
			}
		}
	}

	cout << ans << endl;

}
0