結果

問題 No.2607 Add One Digit
ユーザー tnakao0123tnakao0123
提出日時 2024-01-20 02:12:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 717 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 53,376 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-01-20 02:12:39
合計ジャッジ時間 1,603 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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