結果

問題 No.327 アルファベット列
ユーザー jp_stejp_ste
提出日時 2016-02-01 07:41:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 810 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 76,260 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2024-09-21 19:48:15
合計ジャッジ時間 9,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,012 KB
testcase_01 AC 117 ms
41,160 KB
testcase_02 AC 115 ms
41,100 KB
testcase_03 AC 116 ms
40,832 KB
testcase_04 AC 118 ms
41,168 KB
testcase_05 AC 119 ms
41,100 KB
testcase_06 AC 108 ms
40,416 KB
testcase_07 AC 117 ms
41,180 KB
testcase_08 AC 121 ms
41,028 KB
testcase_09 AC 119 ms
41,120 KB
testcase_10 AC 118 ms
41,252 KB
testcase_11 AC 120 ms
41,140 KB
testcase_12 AC 110 ms
40,212 KB
testcase_13 AC 111 ms
40,520 KB
testcase_14 AC 107 ms
39,828 KB
testcase_15 AC 124 ms
41,164 KB
testcase_16 AC 124 ms
41,000 KB
testcase_17 AC 125 ms
41,452 KB
testcase_18 AC 123 ms
41,028 KB
testcase_19 AC 116 ms
40,364 KB
testcase_20 AC 123 ms
41,100 KB
testcase_21 AC 138 ms
41,188 KB
testcase_22 AC 123 ms
41,056 KB
testcase_23 AC 122 ms
40,716 KB
testcase_24 AC 123 ms
41,144 KB
testcase_25 AC 124 ms
41,048 KB
testcase_26 AC 108 ms
40,128 KB
testcase_27 AC 120 ms
41,116 KB
testcase_28 AC 126 ms
40,892 KB
testcase_29 AC 105 ms
39,852 KB
testcase_30 AC 110 ms
39,856 KB
testcase_31 AC 123 ms
41,044 KB
testcase_32 AC 110 ms
40,608 KB
testcase_33 AC 118 ms
41,168 KB
testcase_34 AC 105 ms
39,776 KB
testcase_35 AC 122 ms
41,184 KB
testcase_36 AC 104 ms
40,036 KB
testcase_37 AC 122 ms
40,760 KB
testcase_38 WA -
testcase_39 AC 119 ms
41,020 KB
testcase_40 AC 118 ms
41,004 KB
testcase_41 AC 119 ms
40,976 KB
testcase_42 AC 118 ms
40,892 KB
testcase_43 AC 103 ms
40,256 KB
testcase_44 AC 120 ms
41,060 KB
testcase_45 AC 116 ms
41,016 KB
testcase_46 AC 115 ms
41,108 KB
testcase_47 AC 120 ms
41,108 KB
testcase_48 AC 111 ms
40,144 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 114 ms
40,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Stack;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long N = scan.nextLong();
		
		if(N < 26) {
			System.out.println((char)(N+'A'));
		} else {
			Stack<Long> stack = new Stack();
			long value = N;
			while(true) {
				long tmp1 = value / 26;
				long tmp2 = value % 26;
				stack.push(tmp2);
				if(tmp1 <= 26) {
					stack.push(tmp1);
					break;
				}
				value = tmp1;
			}
			
			while(!stack.empty()) {
				Long v = stack.pop();
				int n = stack.size();
					
				if(n>=2){
					if(stack.peek() == 0) {
						v--; 
					}
				}
				
				if(n>=1) {
					if(v == 0) {
						v=25L;
					} else { 
						v--; 
					}
				}

				System.out.print((char)(v + 'A'));
			}
			System.out.println();
		}
	}
}
0