結果

問題 No.2246 1333-like Number
ユーザー bluemeganebluemegane
提出日時 2023-03-18 07:25:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 2,960 ms
コンパイル使用メモリ 111,976 KB
実行使用メモリ 27,744 KB
最終ジャッジ日時 2024-09-18 13:05:33
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,736 KB
testcase_01 AC 24 ms
25,480 KB
testcase_02 AC 24 ms
23,772 KB
testcase_03 AC 23 ms
21,424 KB
testcase_04 AC 100 ms
27,744 KB
testcase_05 AC 72 ms
25,868 KB
testcase_06 AC 79 ms
21,684 KB
testcase_07 AC 88 ms
24,032 KB
testcase_08 AC 45 ms
23,728 KB
testcase_09 AC 75 ms
23,732 KB
testcase_10 AC 43 ms
21,556 KB
testcase_11 AC 71 ms
25,576 KB
testcase_12 AC 30 ms
23,768 KB
testcase_13 AC 38 ms
23,768 KB
testcase_14 AC 50 ms
23,512 KB
testcase_15 AC 49 ms
23,508 KB
testcase_16 AC 64 ms
23,636 KB
testcase_17 AC 84 ms
23,768 KB
testcase_18 AC 38 ms
23,856 KB
testcase_19 AC 43 ms
23,900 KB
testcase_20 AC 96 ms
23,768 KB
testcase_21 AC 76 ms
21,560 KB
testcase_22 AC 66 ms
25,724 KB
testcase_23 AC 99 ms
23,768 KB
testcase_24 AC 94 ms
23,860 KB
testcase_25 AC 24 ms
21,688 KB
testcase_26 AC 101 ms
23,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        getAns(n);
    }
    static void getAns(int n)
    {
        var a = new List<int>();
        for (int i = 1; i <= 8; i++)
            for (int j = i + 1; j <= 9; j++) a.Add(i * 10 + j);
        if (n <= 36) { Console.WriteLine(a[n - 1]); return; }
        var s = (n-1) / 36;
        var r = n % 36;
        if (r - 1 < 0) r += 36;
        Console.Write(a[r - 1]);
        var c = a[r - 1] % 10;
        for (int i = 0; i < s; i++) Console.Write(c);
        Console.WriteLine();
    }
}
0