結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー kya_ski
提出日時 2020-03-30 22:55:58
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 1,469 ms
コンパイル使用メモリ 166,864 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 06:01:30
合計ジャッジ時間 2,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const string s = "012345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455";

int main() {
    int n;
    cin >> n;
    cout << s[n] << endl;
    return 0;
}
0