結果

問題 No.327 アルファベット列
ユーザー crazybbb3crazybbb3
提出日時 2016-11-28 21:25:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,967 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 84,232 KB
実行使用メモリ 38,628 KB
最終ジャッジ日時 2024-11-27 12:46:19
合計ジャッジ時間 8,194 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
37,952 KB
testcase_01 AC 79 ms
38,124 KB
testcase_02 AC 86 ms
38,332 KB
testcase_03 AC 79 ms
38,220 KB
testcase_04 AC 79 ms
38,376 KB
testcase_05 AC 79 ms
37,916 KB
testcase_06 AC 86 ms
38,068 KB
testcase_07 AC 84 ms
38,628 KB
testcase_08 AC 79 ms
38,384 KB
testcase_09 AC 78 ms
38,208 KB
testcase_10 AC 77 ms
38,080 KB
testcase_11 AC 79 ms
37,944 KB
testcase_12 AC 80 ms
38,404 KB
testcase_13 AC 80 ms
38,220 KB
testcase_14 AC 77 ms
38,120 KB
testcase_15 AC 81 ms
38,436 KB
testcase_16 AC 85 ms
37,952 KB
testcase_17 AC 80 ms
38,352 KB
testcase_18 AC 78 ms
38,236 KB
testcase_19 AC 77 ms
38,468 KB
testcase_20 AC 89 ms
38,368 KB
testcase_21 AC 79 ms
38,224 KB
testcase_22 AC 79 ms
38,228 KB
testcase_23 AC 77 ms
38,376 KB
testcase_24 AC 74 ms
38,052 KB
testcase_25 AC 76 ms
38,112 KB
testcase_26 AC 79 ms
38,192 KB
testcase_27 AC 79 ms
38,088 KB
testcase_28 AC 75 ms
38,216 KB
testcase_29 AC 78 ms
38,480 KB
testcase_30 AC 72 ms
38,252 KB
testcase_31 AC 77 ms
38,556 KB
testcase_32 AC 82 ms
38,388 KB
testcase_33 AC 90 ms
38,108 KB
testcase_34 AC 78 ms
38,512 KB
testcase_35 AC 78 ms
38,208 KB
testcase_36 AC 90 ms
38,616 KB
testcase_37 AC 78 ms
38,100 KB
testcase_38 AC 76 ms
38,220 KB
testcase_39 AC 77 ms
38,064 KB
testcase_40 AC 78 ms
38,104 KB
testcase_41 AC 80 ms
37,936 KB
testcase_42 AC 77 ms
37,952 KB
testcase_43 AC 74 ms
37,952 KB
testcase_44 AC 79 ms
38,316 KB
testcase_45 AC 79 ms
38,148 KB
testcase_46 AC 76 ms
38,356 KB
testcase_47 AC 77 ms
37,952 KB
testcase_48 AC 79 ms
38,288 KB
testcase_49 AC 77 ms
37,928 KB
testcase_50 AC 78 ms
38,236 KB
testcase_51 AC 78 ms
38,292 KB
testcase_52 AC 78 ms
38,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.StringTokenizer;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        long n = nl();

        n++;

        ArrayList<Integer> list = new ArrayList<>();

        while (n > 0) {
            n--;
            list.add((int)(n % 26));
            n /= 26;
        }

        String ans = "";
        for (int i = 0; i < list.size(); i++) {
            ans = (char)('A' + list.get(i)) + ans;
        }

        out.println(ans);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0