結果

問題 No.327 アルファベット列
ユーザー 37zigen37zigen
提出日時 2016-03-22 16:11:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 4,425 ms
コンパイル使用メモリ 75,516 KB
実行使用メモリ 42,460 KB
最終ジャッジ日時 2024-10-06 23:19:15
合計ジャッジ時間 14,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
42,208 KB
testcase_01 AC 160 ms
42,388 KB
testcase_02 AC 158 ms
42,208 KB
testcase_03 AC 160 ms
42,260 KB
testcase_04 AC 161 ms
42,176 KB
testcase_05 AC 159 ms
42,280 KB
testcase_06 AC 160 ms
42,236 KB
testcase_07 AC 157 ms
42,248 KB
testcase_08 AC 171 ms
42,320 KB
testcase_09 AC 160 ms
42,016 KB
testcase_10 AC 162 ms
42,184 KB
testcase_11 AC 157 ms
42,272 KB
testcase_12 AC 159 ms
42,308 KB
testcase_13 AC 159 ms
42,128 KB
testcase_14 AC 160 ms
42,148 KB
testcase_15 AC 157 ms
42,460 KB
testcase_16 AC 159 ms
42,104 KB
testcase_17 AC 158 ms
42,064 KB
testcase_18 AC 155 ms
42,208 KB
testcase_19 AC 144 ms
41,852 KB
testcase_20 AC 146 ms
42,040 KB
testcase_21 AC 146 ms
41,912 KB
testcase_22 AC 164 ms
42,160 KB
testcase_23 AC 162 ms
42,008 KB
testcase_24 AC 160 ms
42,352 KB
testcase_25 AC 169 ms
42,396 KB
testcase_26 AC 164 ms
42,108 KB
testcase_27 AC 165 ms
42,036 KB
testcase_28 AC 156 ms
42,448 KB
testcase_29 AC 160 ms
42,232 KB
testcase_30 AC 165 ms
42,112 KB
testcase_31 AC 159 ms
42,288 KB
testcase_32 AC 143 ms
41,484 KB
testcase_33 AC 162 ms
42,064 KB
testcase_34 AC 156 ms
42,248 KB
testcase_35 AC 159 ms
42,228 KB
testcase_36 AC 159 ms
42,252 KB
testcase_37 AC 159 ms
42,428 KB
testcase_38 AC 157 ms
42,212 KB
testcase_39 AC 157 ms
42,012 KB
testcase_40 AC 158 ms
42,308 KB
testcase_41 AC 162 ms
41,968 KB
testcase_42 AC 160 ms
42,160 KB
testcase_43 AC 163 ms
42,104 KB
testcase_44 AC 163 ms
42,404 KB
testcase_45 AC 160 ms
42,084 KB
testcase_46 AC 163 ms
42,056 KB
testcase_47 AC 141 ms
41,816 KB
testcase_48 AC 163 ms
42,360 KB
testcase_49 AC 158 ms
42,344 KB
testcase_50 AC 160 ms
42,240 KB
testcase_51 AC 157 ms
42,308 KB
testcase_52 AC 157 ms
42,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder327;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		char[] f={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'};
		
//		26characters;abcdefghijklmnopqrstuvwxyz
//26進数に変換すればいい!
		String ans="";
//		if(n==0){
//			System.out.println(f[0]);
//			System.exit(0);
//		}
		while(n>=0){
			long a=n%26;
			n=(n-a)/26-1;
			ans=f[(int)a]+ans;
		}
		System.out.println(ans);
	}
}
0