結果

問題 No.327 アルファベット列
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-12-25 21:31:29
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 709 bytes
コンパイル時間 3,811 ms
コンパイル使用メモリ 79,872 KB
実行使用メモリ 54,580 KB
最終ジャッジ日時 2024-09-19 00:03:20
合計ジャッジ時間 10,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,924 KB
testcase_01 AC 110 ms
53,892 KB
testcase_02 AC 117 ms
54,148 KB
testcase_03 AC 114 ms
53,940 KB
testcase_04 RE -
testcase_05 AC 114 ms
54,456 KB
testcase_06 RE -
testcase_07 AC 113 ms
54,152 KB
testcase_08 AC 115 ms
54,160 KB
testcase_09 AC 113 ms
54,068 KB
testcase_10 AC 110 ms
54,152 KB
testcase_11 AC 100 ms
52,912 KB
testcase_12 AC 103 ms
52,692 KB
testcase_13 AC 104 ms
53,064 KB
testcase_14 AC 103 ms
52,928 KB
testcase_15 AC 116 ms
53,900 KB
testcase_16 AC 121 ms
53,148 KB
testcase_17 AC 132 ms
54,132 KB
testcase_18 AC 127 ms
54,184 KB
testcase_19 AC 118 ms
53,984 KB
testcase_20 AC 116 ms
54,312 KB
testcase_21 AC 124 ms
53,824 KB
testcase_22 AC 102 ms
52,748 KB
testcase_23 AC 114 ms
54,044 KB
testcase_24 AC 117 ms
53,844 KB
testcase_25 AC 99 ms
52,908 KB
testcase_26 AC 113 ms
54,044 KB
testcase_27 AC 109 ms
53,648 KB
testcase_28 AC 111 ms
54,060 KB
testcase_29 AC 104 ms
52,584 KB
testcase_30 RE -
testcase_31 AC 119 ms
54,324 KB
testcase_32 AC 112 ms
54,080 KB
testcase_33 AC 115 ms
53,904 KB
testcase_34 AC 103 ms
52,836 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_327 {
public static void main(String[] args) {
	String[] Alf = {"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"};
	long[] L = new long[26];
	Scanner sc = new Scanner(System.in);
	long N = sc.nextLong();
	sc.close();
	long A = N;
	long B = N;
	int C = 0;
	String ans = "";
	if(N>=26){
	while(A>=26){
		A /= 26;
		C++;
	}
		for(int i = 0; i < C; i++){
				L[i] = B % 26;
				B /= 26;
		}
			ans+= Alf[(int)B-1];
			for(int j = C-1; j >= 1; j--){
				ans += Alf[(int)L[j]-1];
			}
			ans+= Alf[(int)L[0]];
	}else{
		ans = Alf[(int)N];
	}
		System.out.println(ans);
		}
}
0