結果

問題 No.327 アルファベット列
ユーザー mbanmban
提出日時 2016-12-23 18:19:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 110,076 KB
実行使用メモリ 27,024 KB
最終ジャッジ日時 2024-12-14 17:01:07
合計ジャッジ時間 3,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
22,580 KB
testcase_01 AC 27 ms
26,768 KB
testcase_02 AC 26 ms
24,600 KB
testcase_03 AC 27 ms
24,748 KB
testcase_04 AC 27 ms
26,824 KB
testcase_05 AC 26 ms
24,752 KB
testcase_06 AC 26 ms
24,604 KB
testcase_07 AC 26 ms
24,728 KB
testcase_08 AC 26 ms
24,728 KB
testcase_09 AC 27 ms
26,636 KB
testcase_10 AC 27 ms
26,832 KB
testcase_11 AC 25 ms
22,456 KB
testcase_12 AC 26 ms
24,784 KB
testcase_13 AC 26 ms
27,024 KB
testcase_14 AC 26 ms
24,596 KB
testcase_15 AC 26 ms
24,756 KB
testcase_16 AC 27 ms
24,860 KB
testcase_17 AC 27 ms
26,768 KB
testcase_18 AC 26 ms
22,584 KB
testcase_19 AC 26 ms
24,604 KB
testcase_20 AC 28 ms
24,860 KB
testcase_21 AC 28 ms
24,856 KB
testcase_22 AC 28 ms
24,600 KB
testcase_23 AC 26 ms
24,984 KB
testcase_24 AC 27 ms
24,732 KB
testcase_25 AC 29 ms
26,588 KB
testcase_26 AC 27 ms
24,784 KB
testcase_27 AC 27 ms
25,004 KB
testcase_28 AC 26 ms
24,660 KB
testcase_29 AC 28 ms
26,700 KB
testcase_30 AC 28 ms
24,600 KB
testcase_31 AC 27 ms
24,800 KB
testcase_32 AC 27 ms
24,532 KB
testcase_33 AC 26 ms
24,728 KB
testcase_34 AC 27 ms
26,952 KB
testcase_35 AC 26 ms
22,452 KB
testcase_36 AC 27 ms
22,832 KB
testcase_37 AC 26 ms
24,652 KB
testcase_38 AC 27 ms
24,852 KB
testcase_39 AC 26 ms
24,600 KB
testcase_40 AC 27 ms
26,592 KB
testcase_41 AC 27 ms
24,728 KB
testcase_42 AC 27 ms
26,896 KB
testcase_43 AC 26 ms
22,560 KB
testcase_44 AC 27 ms
26,704 KB
testcase_45 AC 27 ms
26,772 KB
testcase_46 AC 27 ms
25,044 KB
testcase_47 AC 26 ms
24,624 KB
testcase_48 AC 26 ms
24,784 KB
testcase_49 AC 26 ms
24,600 KB
testcase_50 AC 26 ms
24,912 KB
testcase_51 AC 27 ms
24,732 KB
testcase_52 AC 27 ms
26,708 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Magatro
{
    static void Main()
    {
        string ans = "";
        long N = long.Parse(Console.ReadLine());
        char[] D = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".ToArray();
        
        while (N>=0)
        {

            long q = N % 26;
            ans = D[q] + ans;
            N /= 26;
            N--;
        }
        Console.WriteLine(ans);
    }

}

0