結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,088 KB
testcase_01 AC 138 ms
41,128 KB
testcase_02 AC 140 ms
41,020 KB
testcase_03 AC 140 ms
41,308 KB
testcase_04 WA -
testcase_05 AC 139 ms
41,340 KB
testcase_06 AC 139 ms
41,792 KB
testcase_07 AC 139 ms
41,248 KB
testcase_08 AC 137 ms
41,344 KB
testcase_09 AC 137 ms
41,100 KB
testcase_10 AC 137 ms
41,260 KB
testcase_11 AC 144 ms
41,280 KB
testcase_12 AC 145 ms
41,236 KB
testcase_13 AC 143 ms
41,300 KB
testcase_14 AC 141 ms
41,492 KB
testcase_15 AC 138 ms
41,152 KB
testcase_16 AC 138 ms
41,256 KB
testcase_17 AC 136 ms
41,088 KB
testcase_18 AC 138 ms
40,912 KB
testcase_19 AC 137 ms
41,428 KB
testcase_20 AC 136 ms
41,496 KB
testcase_21 AC 140 ms
41,144 KB
testcase_22 AC 142 ms
41,272 KB
testcase_23 AC 139 ms
41,116 KB
testcase_24 AC 140 ms
41,400 KB
testcase_25 AC 137 ms
41,380 KB
testcase_26 AC 135 ms
41,196 KB
testcase_27 AC 136 ms
41,216 KB
testcase_28 AC 136 ms
41,020 KB
testcase_29 AC 140 ms
41,524 KB
testcase_30 WA -
testcase_31 AC 138 ms
41,544 KB
testcase_32 AC 136 ms
41,440 KB
testcase_33 AC 136 ms
41,304 KB
testcase_34 AC 142 ms
41,268 KB
testcase_35 AC 142 ms
41,312 KB
testcase_36 AC 138 ms
41,580 KB
testcase_37 AC 143 ms
41,384 KB
testcase_38 AC 138 ms
41,128 KB
testcase_39 AC 138 ms
41,460 KB
testcase_40 AC 139 ms
41,268 KB
testcase_41 WA -
testcase_42 AC 137 ms
41,420 KB
testcase_43 AC 139 ms
41,408 KB
testcase_44 AC 137 ms
41,356 KB
testcase_45 AC 136 ms
41,356 KB
testcase_46 AC 136 ms
41,032 KB
testcase_47 AC 136 ms
41,312 KB
testcase_48 AC 142 ms
41,428 KB
testcase_49 AC 138 ms
41,256 KB
testcase_50 AC 140 ms
41,436 KB
testcase_51 AC 136 ms
41,100 KB
testcase_52 AC 137 ms
41,128 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