結果

問題 No.1501 酔歩
ユーザー trineutrontrineutron
提出日時 2021-05-08 00:12:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,076 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 203,408 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 12:19:02
合計ジャッジ時間 4,717 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 14 ms
5,376 KB
testcase_08 RE -
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 19 ms
5,376 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 18 ms
5,376 KB
testcase_25 AC 18 ms
5,376 KB
testcase_26 RE -
testcase_27 AC 18 ms
5,376 KB
testcase_28 AC 19 ms
5,376 KB
testcase_29 AC 18 ms
5,376 KB
testcase_30 AC 18 ms
5,376 KB
testcase_31 AC 18 ms
5,376 KB
testcase_32 AC 19 ms
5,376 KB
testcase_33 AC 19 ms
5,376 KB
testcase_34 AC 19 ms
5,376 KB
testcase_35 AC 18 ms
5,376 KB
testcase_36 AC 19 ms
5,376 KB
testcase_37 AC 18 ms
5,376 KB
testcase_38 AC 18 ms
5,376 KB
testcase_39 AC 18 ms
5,376 KB
testcase_40 RE -
testcase_41 AC 18 ms
5,376 KB
testcase_42 AC 21 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 17 ms
5,376 KB
testcase_46 AC 18 ms
5,376 KB
testcase_47 AC 18 ms
5,376 KB
testcase_48 AC 20 ms
5,376 KB
testcase_49 AC 20 ms
5,376 KB
testcase_50 AC 20 ms
5,376 KB
testcase_51 AC 20 ms
5,376 KB
testcase_52 AC 20 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int n, k;
    cin >> n >> k;
    assert(1 <= k and k <= n and n <= 100000);
    if (n == 1)
    {
        cout << "1/1" << endl;
        return 0;
    }
    vector<int> a(n);
    for (int i = 0; i < n; i++)
    {
        cin >> a.at(i);
        assert(1 <= a.at(i) and a.at(i) <= 10);
    }
    const int root = 2520 * 2520;
    vector<int> d(n - 1);
    for (int i = 0; i < n - 1; i++)
    {
        d.at(i) = root / (a.at(i) * a.at(i + 1));
    }
    int64_t p = accumulate(d.begin(), d.begin() + k - 1, int64_t()), q = accumulate(d.begin(), d.end(), int64_t());
    int64_t g = gcd(p, q);
    p /= g;
    q /= g;
    int64_t qcopy = q, maxprime = 1;
    for (int64_t i = 2; i * i <= qcopy; i++) {
        while (qcopy % i == 0) {
            qcopy /= i;
        }
        maxprime = max(maxprime, i);
    }
    maxprime = max(maxprime, qcopy);
    assert(maxprime < 998244353);
    if (p == 0)
    {
        cout << 0 << endl;
    }
    else
    {
        cout << p << '/' << q << endl;
    }
    return 0;
}
0