結果

問題 No.220 世界のなんとか2
ユーザー shima1104shima1104
提出日時 2019-03-12 12:33:30
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 685 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 109,576 KB
実行使用メモリ 34,748 KB
最終ジャッジ日時 2024-06-23 15:45:00
合計ジャッジ時間 4,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
31,288 KB
testcase_01 AC 25 ms
26,516 KB
testcase_02 AC 25 ms
24,084 KB
testcase_03 AC 27 ms
24,348 KB
testcase_04 AC 38 ms
26,636 KB
testcase_05 AC 143 ms
28,428 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace test_2
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] n = Console.ReadLine().Split();
            ulong s = ulong.Parse(n[0]);

            ulong count = 0;

            for(int i = 1; i <= Math.Pow(10,s); i++)
            {
                if(i%3 == 0)
                {
                    count++;
                }
                else if (i.ToString().Contains("3"))
                {
                    count++;
                }
            }

            Console.WriteLine(count);
        }
    }
}
0