結果
| 問題 | 
                            No.756 チャンパーノウン定数 (1)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             mame_shibe
                         | 
                    
| 提出日時 | 2019-12-05 01:05:51 | 
| 言語 | C#(csc)  (csc 3.9.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 630 bytes | 
| コンパイル時間 | 3,055 ms | 
| コンパイル使用メモリ | 111,552 KB | 
| 実行使用メモリ | 27,864 KB | 
| 最終ジャッジ日時 | 2024-12-14 19:03:02 | 
| 合計ジャッジ時間 | 3,432 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | WA * 20 | 
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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);
            WriteLine(f[d-1]);
        }
    }
}
            
            
            
        
            
mame_shibe