結果

問題 No.327 アルファベット列
ユーザー jp_stejp_ste
提出日時 2016-05-13 16:23:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 80,572 KB
実行使用メモリ 42,564 KB
最終ジャッジ日時 2024-10-06 23:38:03
合計ジャッジ時間 12,311 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,956 KB
testcase_01 AC 158 ms
42,296 KB
testcase_02 AC 155 ms
42,432 KB
testcase_03 AC 160 ms
42,316 KB
testcase_04 AC 159 ms
42,156 KB
testcase_05 AC 164 ms
42,496 KB
testcase_06 AC 156 ms
42,424 KB
testcase_07 AC 155 ms
42,108 KB
testcase_08 AC 157 ms
42,152 KB
testcase_09 AC 151 ms
42,008 KB
testcase_10 AC 157 ms
42,228 KB
testcase_11 AC 140 ms
41,768 KB
testcase_12 AC 156 ms
42,540 KB
testcase_13 AC 160 ms
42,540 KB
testcase_14 AC 158 ms
42,540 KB
testcase_15 AC 154 ms
42,184 KB
testcase_16 AC 157 ms
42,128 KB
testcase_17 AC 160 ms
42,488 KB
testcase_18 AC 163 ms
42,520 KB
testcase_19 AC 162 ms
42,384 KB
testcase_20 AC 164 ms
42,236 KB
testcase_21 AC 157 ms
42,152 KB
testcase_22 AC 157 ms
42,260 KB
testcase_23 AC 141 ms
41,640 KB
testcase_24 AC 158 ms
42,340 KB
testcase_25 AC 158 ms
42,420 KB
testcase_26 AC 163 ms
42,512 KB
testcase_27 AC 165 ms
41,900 KB
testcase_28 AC 156 ms
42,392 KB
testcase_29 AC 160 ms
42,396 KB
testcase_30 AC 157 ms
42,516 KB
testcase_31 AC 141 ms
41,792 KB
testcase_32 AC 157 ms
42,044 KB
testcase_33 AC 159 ms
42,164 KB
testcase_34 AC 164 ms
42,316 KB
testcase_35 AC 157 ms
42,340 KB
testcase_36 AC 155 ms
42,320 KB
testcase_37 AC 158 ms
42,192 KB
testcase_38 AC 155 ms
42,320 KB
testcase_39 AC 159 ms
42,540 KB
testcase_40 AC 158 ms
42,280 KB
testcase_41 AC 160 ms
42,432 KB
testcase_42 AC 160 ms
42,232 KB
testcase_43 AC 160 ms
42,048 KB
testcase_44 AC 160 ms
42,564 KB
testcase_45 AC 158 ms
42,168 KB
testcase_46 AC 160 ms
42,276 KB
testcase_47 AC 160 ms
42,260 KB
testcase_48 AC 158 ms
42,380 KB
testcase_49 AC 158 ms
42,276 KB
testcase_50 AC 159 ms
42,488 KB
testcase_51 AC 157 ms
42,352 KB
testcase_52 AC 159 ms
42,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            long n = Long.parseLong(scan.next());
            n++;
            String ans = "";
            while(n > 0) {
                n--;
                ans = (char)(n % 26 + 'A') + ans;
                n /= 26;
            }
            System.out.println(ans);
        }
    }
}
0