結果

問題 No.327 アルファベット列
ユーザー tentententen
提出日時 2021-01-18 18:58:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 54,536 KB
最終ジャッジ日時 2024-12-14 09:45:07
合計ジャッジ時間 11,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,052 KB
testcase_01 AC 138 ms
54,212 KB
testcase_02 AC 139 ms
53,796 KB
testcase_03 AC 136 ms
53,876 KB
testcase_04 AC 137 ms
53,960 KB
testcase_05 AC 137 ms
54,116 KB
testcase_06 AC 138 ms
54,536 KB
testcase_07 AC 138 ms
54,144 KB
testcase_08 AC 137 ms
54,224 KB
testcase_09 AC 138 ms
53,980 KB
testcase_10 AC 137 ms
54,016 KB
testcase_11 AC 140 ms
54,092 KB
testcase_12 AC 136 ms
53,968 KB
testcase_13 AC 138 ms
54,112 KB
testcase_14 AC 142 ms
53,888 KB
testcase_15 AC 140 ms
53,944 KB
testcase_16 AC 142 ms
54,188 KB
testcase_17 AC 139 ms
53,856 KB
testcase_18 AC 139 ms
53,960 KB
testcase_19 AC 138 ms
54,040 KB
testcase_20 AC 139 ms
53,984 KB
testcase_21 AC 139 ms
53,932 KB
testcase_22 AC 139 ms
53,976 KB
testcase_23 AC 138 ms
54,144 KB
testcase_24 AC 145 ms
53,864 KB
testcase_25 AC 140 ms
53,844 KB
testcase_26 AC 142 ms
54,088 KB
testcase_27 AC 138 ms
54,180 KB
testcase_28 AC 137 ms
54,252 KB
testcase_29 AC 139 ms
54,112 KB
testcase_30 AC 136 ms
53,824 KB
testcase_31 AC 138 ms
53,992 KB
testcase_32 AC 138 ms
54,236 KB
testcase_33 AC 139 ms
53,800 KB
testcase_34 AC 136 ms
54,064 KB
testcase_35 AC 140 ms
53,840 KB
testcase_36 AC 139 ms
53,956 KB
testcase_37 AC 139 ms
54,220 KB
testcase_38 AC 137 ms
53,972 KB
testcase_39 AC 138 ms
54,252 KB
testcase_40 AC 139 ms
53,832 KB
testcase_41 AC 140 ms
54,036 KB
testcase_42 AC 136 ms
53,920 KB
testcase_43 AC 137 ms
54,000 KB
testcase_44 AC 140 ms
54,156 KB
testcase_45 AC 139 ms
53,784 KB
testcase_46 AC 140 ms
53,832 KB
testcase_47 AC 139 ms
54,120 KB
testcase_48 AC 141 ms
54,256 KB
testcase_49 AC 141 ms
54,176 KB
testcase_50 AC 142 ms
54,188 KB
testcase_51 AC 139 ms
54,364 KB
testcase_52 AC 142 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		StringBuilder sb = new StringBuilder();
		while (n >= 0) {
		    sb.append((char)(n % 26 + 'A'));
		    n /= 26;
		    n--;
		}
		System.out.println(sb.reverse());
	}
}
0