結果

問題 No.2973 シュニレルマン積分入門
ユーザー ococonomy1ococonomy1
提出日時 2024-11-29 22:35:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,316 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 204,808 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-29 22:35:35
合計ジャッジ時間 5,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

//#pragma GCC target("avx2")
//#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
//using ll = long long;
#define TEST cerr << "TEST" << endl
#define AMARI 998244353
//#define AMARI 1000000007
#define el '\n'
#define El '\n'

using ll = __int128_t;
//llとstringの変換だが、主な用途はusing ll = __int128;をやる時の入出力
string ococo_lltos(ll a){
    string ans;
    while(a){
        ans.push_back('0' + a % 10);
        a /= 10;
    }
    
    reverse(ans.begin(),ans.end());
    return ans;
}

#define MULTI_TEST_CASE false
void solve(void){
    //問題を見たらまず「この問題設定から言えること」をいっぱい言う
    //一個回答に繋がりそうな解法が見えても、実装や細かい詰めに時間がかかりそうなら別の方針を考えてみる
    //添え字回りで面倒になりそうなときは楽になる言い換えを実装の前にじっくり考える
    //ある程度考察しても全然取っ掛かりが見えないときは実験をしてみる
    //よりシンプルな問題に言い換えられたら、言い換えた先の問題を自然言語ではっきりと書く
    int n;
    cin >> n;
    if(n == 1){
        cout << "0/1" << el;
        return;
    }

    
        vector<ll> ans(22);
        //v[0] = 0; v[1] = 1e8;
        ans[0] = 0; //a[1]
        ans[1] = 1;
        for(int i = 0; i < 21; i++)ans[1] *= 10; //a[0] (*1e21)

        for(int i = 2; i < 22; i++){
            //v[i] = (v[i - 1] - v[i - 2]) / 10;
            ans[i] = (ans[i - 1] - ans[i - 2]) / 10;   
        }
        if(n >= 0){
            n *= -1;
            ans[n * -1 + 1] *= -1;
        }
        if(1){
            if(ans[n * -1 + 1] < (__int128_t)0){
                cout << '-';
                ans[n * -1 + 1] *= -1;
            }
            cout << ococo_lltos(ans[n * -1 + 1]);
            cout << "/1";
            for(int i = 0; i < 22; i++)cout << 0;
            cout << el;
            return;
        }

    
    //9939764889
    return;
}

void calc(void){
    return;
}

signed main(void){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    calc();
    int t = 1;
    if(MULTI_TEST_CASE)cin >> t;
    while(t--){
        solve();
    }
    return 0;
}
0