結果

問題 No.327 アルファベット列
ユーザー yun_appyun_app
提出日時 2016-05-13 12:23:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 2,449 ms
コンパイル使用メモリ 76,216 KB
実行使用メモリ 37,036 KB
最終ジャッジ日時 2024-10-06 23:33:38
合計ジャッジ時間 6,817 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,868 KB
testcase_01 AC 51 ms
36,652 KB
testcase_02 AC 50 ms
36,992 KB
testcase_03 AC 51 ms
36,864 KB
testcase_04 AC 51 ms
36,664 KB
testcase_05 AC 51 ms
36,968 KB
testcase_06 AC 52 ms
36,732 KB
testcase_07 AC 50 ms
36,988 KB
testcase_08 AC 50 ms
36,876 KB
testcase_09 AC 51 ms
36,524 KB
testcase_10 AC 52 ms
36,524 KB
testcase_11 AC 51 ms
36,676 KB
testcase_12 AC 52 ms
36,908 KB
testcase_13 AC 51 ms
36,712 KB
testcase_14 AC 51 ms
36,940 KB
testcase_15 AC 50 ms
36,524 KB
testcase_16 AC 52 ms
36,644 KB
testcase_17 AC 51 ms
36,920 KB
testcase_18 AC 50 ms
36,652 KB
testcase_19 AC 52 ms
36,972 KB
testcase_20 AC 51 ms
36,652 KB
testcase_21 AC 50 ms
36,960 KB
testcase_22 AC 53 ms
36,620 KB
testcase_23 AC 52 ms
36,616 KB
testcase_24 AC 52 ms
36,880 KB
testcase_25 AC 56 ms
36,736 KB
testcase_26 AC 51 ms
36,584 KB
testcase_27 AC 51 ms
36,500 KB
testcase_28 AC 51 ms
36,908 KB
testcase_29 AC 52 ms
36,972 KB
testcase_30 AC 51 ms
36,456 KB
testcase_31 AC 51 ms
36,884 KB
testcase_32 AC 52 ms
37,036 KB
testcase_33 AC 54 ms
36,876 KB
testcase_34 AC 53 ms
36,428 KB
testcase_35 AC 54 ms
36,736 KB
testcase_36 AC 57 ms
36,444 KB
testcase_37 AC 55 ms
36,832 KB
testcase_38 AC 55 ms
36,524 KB
testcase_39 AC 54 ms
36,684 KB
testcase_40 AC 56 ms
36,964 KB
testcase_41 AC 53 ms
36,884 KB
testcase_42 AC 61 ms
36,748 KB
testcase_43 AC 55 ms
36,816 KB
testcase_44 AC 54 ms
36,856 KB
testcase_45 AC 54 ms
36,456 KB
testcase_46 AC 55 ms
36,876 KB
testcase_47 AC 55 ms
36,928 KB
testcase_48 AC 55 ms
36,992 KB
testcase_49 AC 55 ms
36,944 KB
testcase_50 AC 55 ms
36,968 KB
testcase_51 AC 54 ms
36,908 KB
testcase_52 AC 55 ms
36,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        long n = Long.parseLong(br.readLine());
        ArrayList<Long> pool = new ArrayList<Long>();
        while(n>0l){
            pool.add(n%26l);
            n /= 26l;
            n--;
        }
        if(n==0l){
            pool.add(0l);
        }
        Collections.reverse(pool);
        System.out.print((char)('A'+pool.get(0)));
        for(int i=1;i<pool.size();i++){
            System.out.print((char)('A'+pool.get(i)));
        }
        
    }
}
0