結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー mame_shibemame_shibe
提出日時 2019-12-05 01:06:34
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 890 ms
コンパイル使用メモリ 63,252 KB
実行使用メモリ 22,752 KB
最終ジャッジ日時 2023-08-21 08:59:36
合計ジャッジ時間 3,534 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
18,532 KB
testcase_01 AC 54 ms
20,564 KB
testcase_02 AC 54 ms
20,612 KB
testcase_03 AC 55 ms
22,640 KB
testcase_04 AC 54 ms
18,584 KB
testcase_05 AC 54 ms
18,732 KB
testcase_06 AC 54 ms
20,636 KB
testcase_07 AC 54 ms
20,720 KB
testcase_08 AC 54 ms
20,628 KB
testcase_09 AC 54 ms
20,608 KB
testcase_10 AC 54 ms
20,796 KB
testcase_11 AC 54 ms
20,596 KB
testcase_12 AC 55 ms
20,616 KB
testcase_13 AC 55 ms
22,692 KB
testcase_14 AC 55 ms
20,632 KB
testcase_15 AC 56 ms
20,688 KB
testcase_16 AC 55 ms
22,752 KB
testcase_17 AC 55 ms
22,740 KB
testcase_18 AC 55 ms
20,568 KB
testcase_19 AC 55 ms
20,752 KB
testcase_20 AC 55 ms
20,680 KB
testcase_21 AC 55 ms
20,720 KB
testcase_22 AC 55 ms
20,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Text;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using static System.Console;
using static System.Math;

namespace YukiCoder
{
    public class Program
    {
        public static void Main(string[] args)
        {
            new Program().Solve();
        }

        public void Solve()
        {
            // [0, 100]
            int d = int.Parse(ReadLine());

            string f = "";

            for (int i = 1; i <= 100; i++)
            {
                f += i;
            }

            WriteLine(f[d-1]);

        }
    }
}
0