結果

問題 No.327 アルファベット列
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-08-16 13:35:54
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 709 bytes
コンパイル時間 793 ms
コンパイル使用メモリ 108,276 KB
実行使用メモリ 48,380 KB
最終ジャッジ日時 2024-11-25 02:45:12
合計ジャッジ時間 96,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
30,584 KB
testcase_01 AC 23 ms
46,240 KB
testcase_02 AC 23 ms
30,332 KB
testcase_03 AC 23 ms
43,928 KB
testcase_04 AC 23 ms
32,612 KB
testcase_05 AC 24 ms
46,204 KB
testcase_06 AC 23 ms
30,676 KB
testcase_07 AC 23 ms
44,260 KB
testcase_08 AC 24 ms
32,504 KB
testcase_09 AC 23 ms
32,492 KB
testcase_10 AC 23 ms
45,840 KB
testcase_11 AC 23 ms
30,580 KB
testcase_12 AC 23 ms
30,456 KB
testcase_13 AC 23 ms
46,092 KB
testcase_14 AC 23 ms
28,504 KB
testcase_15 AC 23 ms
45,620 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 23 ms
30,576 KB
testcase_31 AC 23 ms
45,744 KB
testcase_32 TLE -
testcase_33 AC 24 ms
30,420 KB
testcase_34 AC 23 ms
30,332 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

namespace yukicoder
{
    public class Program
    {
        public static void Main()
        {
            var n = long.Parse(Console.ReadLine());
            var i = 26;
            var j = 1;
            while (n >= i)
            {
                n -= i;
                i *= 26;
                j++;
            }
            var a = new long[j];
            for (i = 0; i < j; i++)
            {
                a[j - 1 - i] = n % 26;
                n /= 26;
            }
            foreach(var m in a)
            {
                Console.Write((char)(m + 'A'));
            }
            Console.WriteLine();
        }
    }
}
0