結果

問題 No.2607 Add One Digit
ユーザー tnakao0123
提出日時 2024-01-20 02:12:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 717 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 53,552 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-28 05:22:48
合計ジャッジ時間 1,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2607.cc:  No.2607 Add One Digit - yukicoder
 */

#include<cstdio>
#include<set>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_L = 11;

/* typedef */

typedef long long ll;
typedef set<int> sl;

/* global variables */

int ds[MAX_L];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);

  int l = 0;
  while (n > 0) ds[l++] = n % 10, n /= 10;

  sl as;
  for (int i = l; i >= 0; i--) {
    for (int d = (i == l) ? 1 : 0; d <= 9; d++) {
      ds[i] = d;
      ll a = 0;
      for (int j = l; j >= 0; j--) a = a * 10 + ds[j];
      as.insert(a);
    }
    if (i > 0) ds[i] = ds[i - 1];
  }

  printf("%d\n", (int)as.size());

  return 0;
}
0