結果
| 問題 | 
                            No.2246 1333-like Number
                             | 
                    
| コンテスト | |
| ユーザー | 
                             evima
                         | 
                    
| 提出日時 | 2023-04-06 01:36:59 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 811 bytes | 
| コンパイル時間 | 887 ms | 
| コンパイル使用メモリ | 76,240 KB | 
| 最終ジャッジ日時 | 2025-02-11 23:14:14 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | AC * 1 WA * 23 | 
ソースコード
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
int main() {
    int n;
    cin >> n;
    priority_queue<int, vector<int>, greater<int>> que;  // 小さい順に取り出す優先度付きキューを用意
    for (int i = 1; i <= 9; i++) {
        for (int j = i + 1; j <= 9; j++) {
            int x = i * 10 + j;
            que.push(x);  // 初期値として 10a+b を優先度付きキューに追加
            for (int k = 0; k < n; k++) {
                x = x * 10 + j;  // 10X+b を計算していく
                que.push(x);
            }
        }
    }
    for (int i = 0; i < n - 1; i++) {
        que.pop();  // n-1個分のうしっぽい数を破棄
    }
    cout << que.top() << endl;  // n番目に小さいうしっぽい数を出力
    return 0;
}
            
            
            
        
            
evima