結果

問題 No.327 アルファベット列
ユーザー jp_stejp_ste
提出日時 2016-02-01 06:48:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 3,555 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-09-21 19:47:51
合計ジャッジ時間 11,004 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
39,804 KB
testcase_01 AC 117 ms
41,156 KB
testcase_02 AC 116 ms
41,000 KB
testcase_03 AC 103 ms
40,120 KB
testcase_04 WA -
testcase_05 AC 114 ms
40,444 KB
testcase_06 WA -
testcase_07 AC 118 ms
41,272 KB
testcase_08 AC 116 ms
41,272 KB
testcase_09 AC 115 ms
41,160 KB
testcase_10 AC 119 ms
41,188 KB
testcase_11 AC 104 ms
40,136 KB
testcase_12 AC 116 ms
40,892 KB
testcase_13 AC 109 ms
40,164 KB
testcase_14 AC 117 ms
40,908 KB
testcase_15 AC 103 ms
39,856 KB
testcase_16 AC 114 ms
40,844 KB
testcase_17 AC 108 ms
39,776 KB
testcase_18 AC 101 ms
39,784 KB
testcase_19 AC 112 ms
40,260 KB
testcase_20 AC 116 ms
41,052 KB
testcase_21 AC 109 ms
40,128 KB
testcase_22 AC 126 ms
41,040 KB
testcase_23 AC 123 ms
41,272 KB
testcase_24 AC 123 ms
41,316 KB
testcase_25 AC 119 ms
41,012 KB
testcase_26 AC 102 ms
39,600 KB
testcase_27 AC 115 ms
40,780 KB
testcase_28 AC 117 ms
41,048 KB
testcase_29 AC 113 ms
41,408 KB
testcase_30 WA -
testcase_31 AC 108 ms
40,016 KB
testcase_32 AC 121 ms
40,340 KB
testcase_33 AC 122 ms
40,848 KB
testcase_34 AC 108 ms
39,800 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 #

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();
				if(!stack.empty()) {
					v--;
				}
				System.out.print((char)(v+'A'));
			}
			System.out.println();
		}
	}
}
0