結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー ut0s
提出日時 2019-08-27 21:24:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 1,427 ms
コンパイル使用メモリ 167,036 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 06:02:15
合計ジャッジ時間 2,325 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
  @file 756.cpp
  @title  No.756 チャンパーノウン定数 (1) - yukicoder
  @url https://yukicoder.me/problems/no/756
**/

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

typedef long long LL;
#define ALL(obj) (obj).begin(), (obj).end()
#define REP(i, N) for (int i = 0; i < (N); ++i)

int main() {
  int D;
  cin >> D;

  string champa_num = "0.";

  REP(i, D + 1) {
    champa_num += to_string(i);
  }

  cout << champa_num[D + 2] << endl;
  return 0;
}
0