結果

問題 No.2246 1333-like Number
ユーザー penguin8331penguin8331
提出日時 2023-03-17 21:26:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 2,086 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 167,120 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-18 13:55:16
合計ジャッジ時間 2,447 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#line 2 "/home/penguin8331/vscode/library/template/template.hpp"
#include <bits/stdc++.h>
#line 3 "/home/penguin8331/vscode/library/template/macro.hpp"

#define pb push_back
#define mp make_pair
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define elif else if
#define updiv(N, X) (((N) + (X) - (1)) / (X))
#define sigma(a, b) ((a + b) * (b - a + 1) / 2)
#line 3 "/home/penguin8331/vscode/library/template/alias.hpp"

using ll = long long;
using ld = long double;
using pii = std::pair<int, int>;
using pll = std::pair<ll, ll>;
constexpr int inf = 1 << 30;
constexpr ll INF = 1LL << 60;
constexpr int dx[] = {1, 0, -1, 0, 1, -1, 1, -1};
constexpr int dy[] = {0, 1, 0, -1, 1, 1, -1, -1};
constexpr int mod = 998244353;
constexpr int MOD = 1e9 + 7;
#line 3 "/home/penguin8331/vscode/library/template/func.hpp"

template <typename T>
inline bool chmax(T& a, T b) { return ((a < b) ? (a = b, true) : (false)); }
template <typename T>
inline bool chmin(T& a, T b) { return ((a > b) ? (a = b, true) : (false)); }
#line 3 "/home/penguin8331/vscode/library/template/util.hpp"

struct IOSetup {
    IOSetup() {
        std::cin.tie(nullptr);
        std::ios::sync_with_stdio(false);
        std::cout.tie(0);
        std::cout << std::fixed << std::setprecision(12);
        std::cerr << std::fixed << std::setprecision(12);
    }
} IOSetup;
#line 1 "/home/penguin8331/vscode/library/template/debug.hpp"
#ifdef LOCAL
#include <algo/debug.hpp>
#else
#define debug(...)
#endif
#line 8 "/home/penguin8331/vscode/library/template/template.hpp"
using namespace std;
#line 2 "A.cpp"

int main() {
    //13 33333
    //abbbb.....
    int N;
    cin>>N;
    //ab ->
    int cnt=0;
    for(int i=0;i<1e9;i++){
        for(int j=1;j<9;j++){
            for(int k=j+1;k<=9;k++){
                cnt++;
                if(cnt==N){
                    cout<<j<<k;
                    for(int l=0;l<i;l++){
                        cout<<k;
                    }
                    cout<<endl;
                    return 0;
                }
            }
        }
    }
}
0