結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
29,312 KB
testcase_01 AC 50 ms
29,284 KB
testcase_02 AC 43 ms
29,056 KB
testcase_03 AC 41 ms
29,312 KB
testcase_04 AC 103 ms
30,564 KB
testcase_05 AC 87 ms
30,716 KB
testcase_06 AC 90 ms
30,564 KB
testcase_07 AC 97 ms
30,464 KB
testcase_08 AC 67 ms
30,576 KB
testcase_09 AC 84 ms
30,720 KB
testcase_10 AC 55 ms
29,440 KB
testcase_11 AC 83 ms
30,848 KB
testcase_12 AC 48 ms
29,056 KB
testcase_13 AC 56 ms
29,296 KB
testcase_14 AC 70 ms
30,464 KB
testcase_15 AC 67 ms
30,464 KB
testcase_16 AC 78 ms
30,464 KB
testcase_17 AC 95 ms
30,720 KB
testcase_18 AC 51 ms
29,056 KB
testcase_19 AC 59 ms
29,308 KB
testcase_20 AC 103 ms
30,564 KB
testcase_21 AC 92 ms
30,720 KB
testcase_22 AC 82 ms
30,720 KB
testcase_23 AC 109 ms
30,464 KB
testcase_24 AC 102 ms
30,592 KB
testcase_25 AC 43 ms
29,440 KB
testcase_26 AC 107 ms
184,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (108 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