結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  int c = 0;
  bool ok = false;
  while (true){
    for (int a = 1; a <= 9; a++){
      for (int b = a + 1; b <= 9; b++){
        N--;
        if (N == 0){
          cout << a;
          for (int j = 0; j <= c; j++){
            cout << b;
          }
          cout << endl;
          ok = true;
          break;
        }
      }
      if (ok){
        break;
      }
    }
    if (ok){
      break;
    }
    c++;
  }
}
0