結果

問題 No.3055 2019(注:異常な難易度です)
ユーザー potoooooooopotoooooooo
提出日時 2019-04-01 23:18:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,838 bytes
コンパイル時間 1,785 ms
コンパイル使用メモリ 170,224 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-18 02:27:10
合計ジャッジ時間 5,162 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 1 ms
4,376 KB
testcase_30 AC 1 ms
4,380 KB
testcase_31 AC 1 ms
4,376 KB
testcase_32 AC 1 ms
4,376 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 2 ms
4,376 KB
testcase_35 AC 1 ms
4,380 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 2 ms
4,376 KB
testcase_38 AC 2 ms
4,376 KB
testcase_39 AC 1 ms
4,380 KB
testcase_40 AC 1 ms
4,376 KB
testcase_41 AC 2 ms
4,380 KB
testcase_42 AC 1 ms
4,380 KB
testcase_43 AC 2 ms
4,380 KB
testcase_44 AC 2 ms
4,376 KB
testcase_45 AC 2 ms
4,376 KB
testcase_46 AC 1 ms
4,376 KB
testcase_47 AC 1 ms
4,376 KB
testcase_48 AC 2 ms
4,380 KB
testcase_49 AC 1 ms
4,380 KB
testcase_50 AC 1 ms
4,376 KB
testcase_51 AC 1 ms
4,380 KB
testcase_52 AC 2 ms
4,376 KB
testcase_53 AC 2 ms
4,380 KB
testcase_54 AC 1 ms
4,376 KB
testcase_55 AC 2 ms
4,380 KB
testcase_56 AC 2 ms
4,376 KB
testcase_57 AC 2 ms
4,380 KB
testcase_58 AC 1 ms
4,376 KB
testcase_59 AC 1 ms
4,380 KB
testcase_60 AC 1 ms
4,376 KB
testcase_61 AC 1 ms
4,376 KB
testcase_62 AC 1 ms
4,376 KB
testcase_63 AC 1 ms
4,376 KB
testcase_64 AC 1 ms
4,376 KB
testcase_65 AC 1 ms
4,380 KB
testcase_66 AC 1 ms
4,376 KB
testcase_67 AC 1 ms
4,376 KB
testcase_68 AC 2 ms
4,380 KB
testcase_69 AC 1 ms
4,380 KB
testcase_70 AC 2 ms
4,380 KB
testcase_71 AC 2 ms
4,380 KB
testcase_72 AC 1 ms
4,376 KB
testcase_73 AC 2 ms
4,376 KB
testcase_74 AC 2 ms
4,376 KB
testcase_75 AC 2 ms
4,376 KB
testcase_76 AC 2 ms
4,380 KB
testcase_77 AC 2 ms
4,376 KB
testcase_78 AC 2 ms
4,380 KB
testcase_79 AC 2 ms
4,380 KB
testcase_80 AC 2 ms
4,376 KB
testcase_81 AC 2 ms
4,376 KB
testcase_82 AC 2 ms
4,376 KB
testcase_83 AC 2 ms
4,376 KB
testcase_84 AC 3 ms
4,384 KB
testcase_85 AC 2 ms
4,376 KB
testcase_86 AC 2 ms
4,380 KB
testcase_87 AC 2 ms
4,380 KB
testcase_88 AC 2 ms
4,380 KB
testcase_89 AC 2 ms
4,376 KB
testcase_90 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘int main()’ 内:
main.cpp:57:29: 警告: ‘digit’ may be used uninitialized [-Wmaybe-uninitialized]
   57 |     vector<int> bin(digit, 0);
      |                             ^
main.cpp:47:9: 備考: ‘digit’ はここで定義されています
   47 |     int digit;
      |         ^~~~~

ソースコード

diff #

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

struct BigInt {
    vector<long long> v;
    long long base = 1000000000;
    BigInt() {
        v.push_back(0);
    }
    void add(long long a) {
        int index = 0;
        while (index < v.size()) {
            v[index] += a;
            a = v[index] / base;
            v[index] %= base;
            if (a == 0) return;
            index++;
        }
        if (index == v.size()) {
            v.push_back(a);
        }
    }
    void mul2() {
        int index = 0;
        long long add = 0;
        while (index < v.size()) {
            v[index] = v[index] * 2 + add;
            add = v[index] / base;
            v[index] %= base;
            index++;
        }
        if (add != 0) v.push_back(add);
    }
    void print() {
        for (int i = v.size()-1; i >= 0; i--) {
            if (i != v.size()-1) printf("%09d", (int) v[i]);
            else printf("%d", v[i]);
        }
        printf("\n");
    }
};

int main() {
    int n; cin >> n;
    vector<long long> d(2000, 0), e(2000, 0);
    d[1] = 1; e[1] = 1;
    int digit;
    for (int i = 1; i < 2000; i++) {
        d[i+1] = d[i] + max(0, i-1);
        e[i+1] = e[i] + d[i+1];
        if (e[i] >= n) {
            digit = i;
            n -= e[i-1];
            break;
        } 
    }
    vector<int> bin(digit, 0);
    bin[0] = 1; int index = 1;
    bin[digit-1] = 1;
    while (n > 0) {
        if (n > digit-index-1 && n != 1) {
            n -= digit-index-1;
            bin[index] = 1; index++;
            continue;
        } else {
            for (int i = 0; i < n; i++) {
                bin[digit-i-1] = 1;
            }
            break;
        }
    }
    BigInt ans;
    for (int i = 0; i < digit; i++) {
        ans.mul2();
        if (bin[i]) ans.add(1); 
    }
    ans.print();
    return 0;
}
0