結果

問題 No.1501 酔歩
ユーザー nok0nok0
提出日時 2021-04-08 19:55:48
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 1,087 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 200,044 KB
実行使用メモリ 4,476 KB
最終ジャッジ日時 2023-10-13 04:11:33
合計ジャッジ時間 5,960 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 2 ms
4,352 KB
testcase_04 AC 2 ms
4,352 KB
testcase_05 AC 29 ms
4,372 KB
testcase_06 AC 24 ms
4,348 KB
testcase_07 AC 28 ms
4,352 KB
testcase_08 AC 10 ms
4,352 KB
testcase_09 AC 23 ms
4,352 KB
testcase_10 AC 12 ms
4,352 KB
testcase_11 AC 19 ms
4,348 KB
testcase_12 AC 20 ms
4,352 KB
testcase_13 AC 1 ms
4,352 KB
testcase_14 AC 1 ms
4,356 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,356 KB
testcase_17 AC 2 ms
4,372 KB
testcase_18 AC 2 ms
4,356 KB
testcase_19 AC 2 ms
4,352 KB
testcase_20 AC 2 ms
4,352 KB
testcase_21 AC 2 ms
4,352 KB
testcase_22 AC 41 ms
4,348 KB
testcase_23 AC 38 ms
4,348 KB
testcase_24 AC 38 ms
4,348 KB
testcase_25 AC 44 ms
4,352 KB
testcase_26 AC 45 ms
4,348 KB
testcase_27 AC 41 ms
4,352 KB
testcase_28 AC 34 ms
4,348 KB
testcase_29 AC 46 ms
4,372 KB
testcase_30 AC 34 ms
4,352 KB
testcase_31 AC 45 ms
4,352 KB
testcase_32 AC 43 ms
4,356 KB
testcase_33 AC 37 ms
4,348 KB
testcase_34 AC 38 ms
4,352 KB
testcase_35 AC 41 ms
4,352 KB
testcase_36 AC 38 ms
4,352 KB
testcase_37 AC 43 ms
4,352 KB
testcase_38 AC 44 ms
4,352 KB
testcase_39 AC 34 ms
4,376 KB
testcase_40 AC 40 ms
4,368 KB
testcase_41 AC 39 ms
4,348 KB
testcase_42 AC 34 ms
4,356 KB
testcase_43 AC 2 ms
4,356 KB
testcase_44 AC 2 ms
4,348 KB
testcase_45 AC 27 ms
4,476 KB
testcase_46 AC 25 ms
4,348 KB
testcase_47 AC 31 ms
4,352 KB
testcase_48 AC 36 ms
4,352 KB
testcase_49 AC 31 ms
4,348 KB
testcase_50 AC 36 ms
4,348 KB
testcase_51 AC 38 ms
4,352 KB
testcase_52 AC 36 ms
4,352 KB
testcase_53 AC 2 ms
4,352 KB
testcase_54 AC 1 ms
4,348 KB
testcase_55 AC 2 ms
4,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

struct rational {
public:
	rational() = default;
	rational(long long x, long long y) : x(x), y(y) {}

	rational& operator+=(const rational& oth) {
		auto [z, w] = oth;
		auto ny = y / std::gcd(y, w) * w;
		auto nx = ny / y * x + ny / w * z;
		x = nx, y = ny;
		reduction();
		return *this;
	}
	rational& operator/=(const rational& oth) {
		auto [z, w] = oth;
		x *= w, y *= z;
		reduction();
		return *this;
	}
	rational operator/(rational oth) {
		return rational(*this) /= oth;
	}

	friend std::ostream& operator<<(std::ostream& s, rational a) {
		if(a.x == 0 and a.y == 1)
			s << '0';
		else
			s << a.x << '/' << a.y;
		return s;
	}

private:
	long long x, y;

	void reduction() {
		long long g = std::gcd(x, y);
		x /= g, y /= g;
	}
};

int n, k;
int a[100000];
int main() {
	std::cin >> n >> k;
	for(int i = 0; i < n; i++) std::cin >> a[i];

	auto f = [&](int x) {
		rational res(0, 1);
		for(int i = 0; i < x; i++)
			res += rational(a[0] * a[1], a[i] * a[i + 1]);
		return res;
	};

	std::cout << (n != 1 ? f(--k) / f(--n) : rational(1, 1)) << '\n';
}
0