結果

問題 No.327 アルファベット列
ユーザー yun_appyun_app
提出日時 2016-05-13 12:22:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 881 bytes
コンパイル時間 3,241 ms
コンパイル使用メモリ 75,576 KB
実行使用メモリ 52,220 KB
最終ジャッジ日時 2024-10-05 14:16:36
合計ジャッジ時間 6,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
49,952 KB
testcase_01 AC 50 ms
50,096 KB
testcase_02 WA -
testcase_03 AC 47 ms
50,136 KB
testcase_04 AC 46 ms
50,012 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 46 ms
49,728 KB
testcase_08 AC 46 ms
50,104 KB
testcase_09 AC 46 ms
50,056 KB
testcase_10 WA -
testcase_11 AC 47 ms
49,912 KB
testcase_12 AC 48 ms
49,600 KB
testcase_13 AC 48 ms
49,884 KB
testcase_14 AC 48 ms
49,580 KB
testcase_15 AC 48 ms
50,056 KB
testcase_16 WA -
testcase_17 AC 46 ms
50,084 KB
testcase_18 AC 46 ms
50,068 KB
testcase_19 WA -
testcase_20 AC 48 ms
49,740 KB
testcase_21 AC 47 ms
50,136 KB
testcase_22 AC 47 ms
50,172 KB
testcase_23 AC 47 ms
49,908 KB
testcase_24 AC 47 ms
49,768 KB
testcase_25 WA -
testcase_26 AC 49 ms
50,068 KB
testcase_27 AC 48 ms
49,664 KB
testcase_28 WA -
testcase_29 AC 48 ms
50,144 KB
testcase_30 AC 46 ms
49,880 KB
testcase_31 WA -
testcase_32 AC 45 ms
50,100 KB
testcase_33 AC 46 ms
50,008 KB
testcase_34 AC 47 ms
50,056 KB
testcase_35 AC 48 ms
49,588 KB
testcase_36 AC 45 ms
49,908 KB
testcase_37 AC 47 ms
50,036 KB
testcase_38 WA -
testcase_39 AC 49 ms
50,020 KB
testcase_40 AC 47 ms
50,088 KB
testcase_41 AC 47 ms
50,064 KB
testcase_42 WA -
testcase_43 AC 46 ms
49,604 KB
testcase_44 AC 47 ms
50,196 KB
testcase_45 AC 47 ms
50,072 KB
testcase_46 AC 46 ms
50,184 KB
testcase_47 AC 47 ms
49,768 KB
testcase_48 WA -
testcase_49 AC 47 ms
50,096 KB
testcase_50 AC 56 ms
49,708 KB
testcase_51 WA -
testcase_52 AC 46 ms
50,000 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());
        if(n==0){
            System.out.println("A");
            return;
        }
        ArrayList<Long> pool = new ArrayList<Long>();
        while(n>0l){
            pool.add(n%26l);
            n /= 26l;
            n--;
        }
        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