結果

問題 No.2246 1333-like Number
ユーザー mobchanmobchan
提出日時 2023-04-27 02:50:14
言語 C#
(.NET 8.0.203)
結果
RE  
実行時間 -
コード長 689 bytes
コンパイル時間 6,309 ms
コンパイル使用メモリ 167,864 KB
実行使用メモリ 191,800 KB
最終ジャッジ日時 2024-04-28 02:00:29
合計ジャッジ時間 9,762 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
29,312 KB
testcase_01 AC 43 ms
29,304 KB
testcase_02 AC 45 ms
29,056 KB
testcase_03 AC 45 ms
29,184 KB
testcase_04 AC 107 ms
30,444 KB
testcase_05 AC 90 ms
30,580 KB
testcase_06 AC 93 ms
30,432 KB
testcase_07 AC 94 ms
30,464 KB
testcase_08 AC 69 ms
30,464 KB
testcase_09 AC 89 ms
30,464 KB
testcase_10 AC 58 ms
29,176 KB
testcase_11 AC 83 ms
30,464 KB
testcase_12 AC 49 ms
29,440 KB
testcase_13 AC 52 ms
29,440 KB
testcase_14 AC 70 ms
30,464 KB
testcase_15 AC 72 ms
30,464 KB
testcase_16 AC 87 ms
30,556 KB
testcase_17 AC 105 ms
30,720 KB
testcase_18 AC 53 ms
29,312 KB
testcase_19 AC 54 ms
29,176 KB
testcase_20 AC 110 ms
30,848 KB
testcase_21 AC 95 ms
30,464 KB
testcase_22 AC 81 ms
30,464 KB
testcase_23 AC 111 ms
30,464 KB
testcase_24 AC 105 ms
30,464 KB
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (84 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;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var N = int.Parse(Console.ReadLine());
        var list = new List<int>();
        for (int i = 1; i <= 8; i++)
        {
            for (int j = i + 1; j <= 9; j++)
            {
                var X = 10 * i + j;
                list.Add(X);
            }
        }

        var r = N % list.Count;
        var seed = list[r - 1];
        var times = N / list.Count ;
        Console.Write(seed);
        var b = seed % 10;
        for (int i = 0; i < times; i++)
        {
            Console.Write(b);
        }
        Console.WriteLine();
    }
}
0