結果

問題 No.327 アルファベット列
ユーザー nCk_cvnCk_cv
提出日時 2016-02-04 21:14:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 76,428 KB
実行使用メモリ 54,644 KB
最終ジャッジ日時 2024-10-06 22:56:04
合計ジャッジ時間 11,378 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,644 KB
testcase_01 AC 136 ms
42,248 KB
testcase_02 AC 146 ms
42,264 KB
testcase_03 AC 140 ms
42,636 KB
testcase_04 AC 141 ms
42,088 KB
testcase_05 AC 146 ms
42,504 KB
testcase_06 AC 144 ms
42,444 KB
testcase_07 AC 143 ms
42,524 KB
testcase_08 AC 130 ms
41,956 KB
testcase_09 AC 150 ms
42,112 KB
testcase_10 AC 136 ms
41,620 KB
testcase_11 AC 191 ms
42,764 KB
testcase_12 AC 192 ms
42,520 KB
testcase_13 AC 193 ms
42,444 KB
testcase_14 AC 194 ms
42,464 KB
testcase_15 AC 128 ms
41,796 KB
testcase_16 AC 129 ms
41,888 KB
testcase_17 AC 125 ms
41,820 KB
testcase_18 AC 129 ms
41,896 KB
testcase_19 AC 150 ms
42,220 KB
testcase_20 AC 124 ms
41,896 KB
testcase_21 AC 139 ms
42,424 KB
testcase_22 AC 139 ms
42,044 KB
testcase_23 AC 146 ms
42,348 KB
testcase_24 AC 125 ms
41,992 KB
testcase_25 AC 128 ms
42,016 KB
testcase_26 AC 124 ms
41,828 KB
testcase_27 AC 145 ms
42,212 KB
testcase_28 AC 129 ms
41,448 KB
testcase_29 AC 146 ms
42,500 KB
testcase_30 AC 147 ms
42,480 KB
testcase_31 AC 153 ms
42,236 KB
testcase_32 AC 135 ms
41,564 KB
testcase_33 AC 143 ms
42,216 KB
testcase_34 AC 150 ms
42,204 KB
testcase_35 AC 147 ms
42,260 KB
testcase_36 AC 145 ms
42,272 KB
testcase_37 AC 159 ms
42,508 KB
testcase_38 AC 147 ms
42,528 KB
testcase_39 AC 134 ms
42,092 KB
testcase_40 AC 142 ms
42,052 KB
testcase_41 AC 147 ms
42,360 KB
testcase_42 AC 150 ms
42,540 KB
testcase_43 AC 148 ms
42,124 KB
testcase_44 AC 152 ms
42,412 KB
testcase_45 AC 147 ms
42,340 KB
testcase_46 AC 130 ms
41,456 KB
testcase_47 AC 141 ms
42,440 KB
testcase_48 AC 138 ms
42,424 KB
testcase_49 AC 129 ms
41,976 KB
testcase_50 AC 144 ms
42,264 KB
testcase_51 AC 149 ms
42,240 KB
testcase_52 AC 140 ms
42,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	static int[] ret = new int[3];
	static int[] k;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long c = sc.nextLong()+1;
		
		String ans = "";
        while(c > 0){
            c--;
            ans = (char)(c % 26 + 'A')+ans;
            c/=26;
        }
        System.out.println(ans);
	}
}
0