結果

問題 No.2246 1333-like Number
ユーザー mobchanmobchan
提出日時 2023-04-27 07:25:22
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 22,861 ms
コンパイル使用メモリ 167,596 KB
実行使用メモリ 183,596 KB
最終ジャッジ日時 2024-11-16 13:41:40
合計ジャッジ時間 24,182 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
29,184 KB
testcase_01 AC 47 ms
29,184 KB
testcase_02 AC 51 ms
29,184 KB
testcase_03 AC 51 ms
28,912 KB
testcase_04 AC 123 ms
30,464 KB
testcase_05 AC 103 ms
30,588 KB
testcase_06 AC 108 ms
30,592 KB
testcase_07 AC 111 ms
30,464 KB
testcase_08 AC 81 ms
30,464 KB
testcase_09 AC 104 ms
30,580 KB
testcase_10 AC 67 ms
29,056 KB
testcase_11 AC 92 ms
30,320 KB
testcase_12 AC 54 ms
29,056 KB
testcase_13 AC 61 ms
29,300 KB
testcase_14 AC 76 ms
30,560 KB
testcase_15 AC 74 ms
30,592 KB
testcase_16 AC 84 ms
30,720 KB
testcase_17 AC 100 ms
30,464 KB
testcase_18 AC 55 ms
29,184 KB
testcase_19 AC 62 ms
29,312 KB
testcase_20 AC 111 ms
30,720 KB
testcase_21 AC 99 ms
30,464 KB
testcase_22 AC 88 ms
30,464 KB
testcase_23 AC 110 ms
30,440 KB
testcase_24 AC 114 ms
30,336 KB
testcase_25 AC 46 ms
29,312 KB
testcase_26 AC 110 ms
183,596 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (100 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;
        if (r == 0) r = list.Count;
        var seed = list[r - 1];
        var times = (N - 1) / list.Count;
        Console.Write(seed);
        var b = seed % 10;
        for (int i = 0; i < times; i++)
        {
            Console.Write(b);
        }
        Console.WriteLine();
    }
}
0