結果

問題 No.2246 1333-like Number
ユーザー merom686merom686
提出日時 2023-03-17 21:24:21
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 203,512 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 10:10:46
合計ジャッジ時間 3,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;
    n--;

    vector<int> a;
    for (int i = 1; i < 10; i++) {
        for (int j = i + 1; j < 10; j++) {
            a.push_back(i * 10 + j);
        }
    }
    int k = a.size();

    int l = n / k;
    int r = n % k;

    cout << a[r];
    for (int i = 0; i < l; i++) {
        cout << a[r] % 10;
    }
    cout << endl;

    return 0;
}
0