結果

問題 No.327 アルファベット列
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-01-04 15:41:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 4,090 ms
コンパイル使用メモリ 77,432 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-09-19 11:11:37
合計ジャッジ時間 10,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,140 KB
testcase_01 AC 115 ms
40,880 KB
testcase_02 AC 104 ms
41,196 KB
testcase_03 AC 112 ms
41,528 KB
testcase_04 WA -
testcase_05 AC 104 ms
41,168 KB
testcase_06 WA -
testcase_07 AC 102 ms
41,312 KB
testcase_08 AC 115 ms
41,356 KB
testcase_09 AC 116 ms
41,272 KB
testcase_10 AC 103 ms
41,140 KB
testcase_11 AC 102 ms
41,396 KB
testcase_12 AC 111 ms
41,164 KB
testcase_13 AC 101 ms
41,296 KB
testcase_14 AC 126 ms
41,484 KB
testcase_15 AC 126 ms
41,408 KB
testcase_16 AC 116 ms
41,272 KB
testcase_17 AC 104 ms
41,088 KB
testcase_18 AC 111 ms
41,236 KB
testcase_19 AC 122 ms
41,312 KB
testcase_20 AC 115 ms
41,312 KB
testcase_21 AC 110 ms
41,368 KB
testcase_22 AC 116 ms
41,568 KB
testcase_23 AC 113 ms
41,168 KB
testcase_24 AC 104 ms
41,356 KB
testcase_25 AC 114 ms
41,276 KB
testcase_26 AC 124 ms
41,512 KB
testcase_27 AC 108 ms
41,400 KB
testcase_28 AC 120 ms
41,100 KB
testcase_29 AC 102 ms
41,464 KB
testcase_30 WA -
testcase_31 AC 114 ms
41,280 KB
testcase_32 AC 117 ms
41,116 KB
testcase_33 AC 127 ms
41,224 KB
testcase_34 AC 122 ms
41,228 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki_coder;

import java.util.Scanner;

public class No_327 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		sc.close();
		if(N==0){
			System.out.println("A");
		}else if(N < 26){
			System.out.println((char)('A' + N));
		}else if(N>=26){
			long[] ans = new long[12];
			int c = 0;
			long copy = N;
			while(copy >= 26){
				copy /= 26;
				c++;
			}
			copy = N;
			for(int i = c; i >=0; i--){
				if(i!=0){
					ans[i] = copy % 26;
					if(i != 1){
					copy /= 26;
					}
				}else if(i==0){
					ans[i] = copy / 26;
				}
			}
			for(int i = 0; i <= c; i++){
				if(i==c){
					System.out.println((char)(ans[i] + 'A'));
				}else{
					if(ans[i] != 0){
					ans[i] -= 1;
					}
					System.out.print((char)(ans[i] + 'A'));
				}
			}
		}
	}
}
0