結果

問題 No.207 世界のなんとか
ユーザー TDTD
提出日時 2022-05-25 09:30:26
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 7,925 ms
コンパイル使用メモリ 169,900 KB
実行使用メモリ 187,688 KB
最終ジャッジ日時 2024-09-20 14:41:53
合計ジャッジ時間 10,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
31,520 KB
testcase_01 AC 75 ms
31,512 KB
testcase_02 AC 76 ms
31,600 KB
testcase_03 AC 75 ms
31,516 KB
testcase_04 AC 75 ms
31,512 KB
testcase_05 AC 74 ms
31,388 KB
testcase_06 AC 74 ms
31,632 KB
testcase_07 AC 70 ms
31,588 KB
testcase_08 AC 71 ms
31,508 KB
testcase_09 AC 69 ms
31,720 KB
testcase_10 AC 70 ms
31,512 KB
testcase_11 AC 70 ms
31,632 KB
testcase_12 AC 69 ms
31,376 KB
testcase_13 AC 70 ms
31,644 KB
testcase_14 AC 70 ms
31,508 KB
testcase_15 AC 70 ms
31,372 KB
testcase_16 AC 70 ms
31,508 KB
testcase_17 AC 71 ms
31,888 KB
testcase_18 AC 70 ms
187,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (107 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

namespace yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
               string[] str = Console.ReadLine().Split(' ');
            int a = int.Parse(str[0]);
            int b = int.Parse(str[1]);
            string s = "";
            string t = "3";
             
            for(int i = a; i <= b; i++)
            {
                s = i.ToString();
                int num = s.IndexOf(t, 0);
                if (i % 3 == 0)
                {
                    Console.WriteLine(i);
                }
                else if (num>=0)
                {
                    Console.WriteLine(i);
                }
            }
        }
    }
}
0