結果

問題 No.327 アルファベット列
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-30 16:53:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 5,119 ms
コンパイル使用メモリ 76,072 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-10-07 18:45:28
合計ジャッジ時間 11,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,028 KB
testcase_01 AC 102 ms
41,296 KB
testcase_02 AC 117 ms
41,120 KB
testcase_03 AC 125 ms
41,284 KB
testcase_04 AC 109 ms
41,268 KB
testcase_05 AC 105 ms
41,068 KB
testcase_06 AC 119 ms
41,380 KB
testcase_07 AC 109 ms
41,088 KB
testcase_08 AC 107 ms
41,164 KB
testcase_09 AC 118 ms
41,312 KB
testcase_10 AC 125 ms
41,376 KB
testcase_11 AC 154 ms
41,204 KB
testcase_12 AC 158 ms
41,064 KB
testcase_13 AC 149 ms
41,156 KB
testcase_14 AC 154 ms
41,212 KB
testcase_15 AC 154 ms
41,208 KB
testcase_16 AC 155 ms
41,300 KB
testcase_17 AC 126 ms
41,176 KB
testcase_18 AC 118 ms
41,160 KB
testcase_19 AC 106 ms
41,456 KB
testcase_20 AC 126 ms
41,208 KB
testcase_21 AC 122 ms
40,868 KB
testcase_22 AC 107 ms
41,080 KB
testcase_23 AC 123 ms
40,992 KB
testcase_24 AC 106 ms
41,456 KB
testcase_25 AC 121 ms
41,164 KB
testcase_26 AC 118 ms
41,284 KB
testcase_27 AC 117 ms
41,292 KB
testcase_28 AC 109 ms
40,988 KB
testcase_29 AC 105 ms
41,096 KB
testcase_30 AC 125 ms
41,216 KB
testcase_31 AC 125 ms
41,284 KB
testcase_32 AC 125 ms
41,340 KB
testcase_33 AC 126 ms
41,124 KB
testcase_34 AC 107 ms
41,052 KB
testcase_35 AC 106 ms
41,232 KB
testcase_36 AC 118 ms
40,808 KB
testcase_37 AC 124 ms
41,564 KB
testcase_38 AC 124 ms
40,860 KB
testcase_39 AC 124 ms
41,076 KB
testcase_40 AC 108 ms
40,960 KB
testcase_41 AC 119 ms
41,396 KB
testcase_42 AC 124 ms
41,196 KB
testcase_43 AC 106 ms
41,472 KB
testcase_44 AC 119 ms
41,116 KB
testcase_45 AC 119 ms
41,180 KB
testcase_46 AC 120 ms
40,736 KB
testcase_47 AC 121 ms
40,992 KB
testcase_48 AC 121 ms
41,300 KB
testcase_49 AC 124 ms
41,172 KB
testcase_50 AC 117 ms
41,020 KB
testcase_51 AC 118 ms
41,144 KB
testcase_52 AC 108 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise36{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    long number = sc.nextLong();

    String[] alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".split("");

    String answer = getAlphabets(number, alphabet);

    System.out.println(answer);
  }

  private static String getAlphabets(long number, String[] alphabet){
    long b = number % 26;

    if (number / 26 == 0){
      return alphabet[(int)b];
    }else{
      return getAlphabets(number / 26 - 1, alphabet) + alphabet[(int)b];
    }
  }
}
0