結果

問題 No.327 アルファベット列
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-01-04 16:42:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 856 bytes
コンパイル時間 3,814 ms
コンパイル使用メモリ 77,772 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-09-19 11:12:32
合計ジャッジ時間 12,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,008 KB
testcase_01 AC 138 ms
41,408 KB
testcase_02 WA -
testcase_03 AC 142 ms
41,384 KB
testcase_04 AC 140 ms
41,776 KB
testcase_05 AC 139 ms
41,264 KB
testcase_06 AC 133 ms
41,416 KB
testcase_07 AC 137 ms
41,156 KB
testcase_08 AC 139 ms
41,244 KB
testcase_09 AC 137 ms
41,108 KB
testcase_10 AC 136 ms
41,352 KB
testcase_11 AC 138 ms
40,884 KB
testcase_12 AC 136 ms
41,324 KB
testcase_13 AC 139 ms
41,196 KB
testcase_14 AC 137 ms
41,224 KB
testcase_15 AC 135 ms
41,020 KB
testcase_16 AC 136 ms
41,480 KB
testcase_17 AC 136 ms
41,512 KB
testcase_18 AC 135 ms
41,088 KB
testcase_19 AC 138 ms
41,232 KB
testcase_20 AC 139 ms
41,264 KB
testcase_21 AC 138 ms
41,008 KB
testcase_22 AC 138 ms
41,384 KB
testcase_23 AC 139 ms
41,168 KB
testcase_24 AC 137 ms
41,120 KB
testcase_25 AC 137 ms
41,440 KB
testcase_26 AC 140 ms
41,228 KB
testcase_27 AC 137 ms
41,056 KB
testcase_28 AC 137 ms
41,092 KB
testcase_29 AC 140 ms
41,304 KB
testcase_30 AC 142 ms
41,124 KB
testcase_31 AC 137 ms
41,304 KB
testcase_32 AC 141 ms
41,348 KB
testcase_33 AC 139 ms
41,176 KB
testcase_34 AC 136 ms
41,400 KB
testcase_35 AC 138 ms
41,240 KB
testcase_36 AC 136 ms
41,144 KB
testcase_37 AC 138 ms
41,060 KB
testcase_38 AC 137 ms
41,508 KB
testcase_39 AC 135 ms
41,156 KB
testcase_40 AC 136 ms
41,396 KB
testcase_41 AC 136 ms
41,488 KB
testcase_42 AC 135 ms
41,160 KB
testcase_43 AC 134 ms
41,064 KB
testcase_44 AC 134 ms
41,112 KB
testcase_45 AC 137 ms
41,128 KB
testcase_46 AC 136 ms
41,228 KB
testcase_47 AC 134 ms
41,248 KB
testcase_48 AC 136 ms
41,016 KB
testcase_49 AC 135 ms
41,016 KB
testcase_50 AC 135 ms
41,228 KB
testcase_51 AC 136 ms
41,240 KB
testcase_52 AC 138 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

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+1;
			for(int i = c; i >=0; i--){
				if(i!=0){
					ans[i] = copy % 26;
					if(ans[i] == 0){
						ans[i] = 26;
						copy -= 26;
					}
					if(i != 1){
					copy /= 26;
					}
				}else if(i==0){
					ans[i] = copy / 26;
					if(ans[i] == 0){
						ans[i] = 26;
					}
				}
			}
			for(int i = 0; i <= c; i++){
					ans[i] -= 1;
					System.out.print((char)(ans[i] + 'A'));
				}
			System.out.println();
			}
		}
	}
0