結果

問題 No.327 アルファベット列
ユーザー jp_stejp_ste
提出日時 2016-02-01 08:18:26
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 834 bytes
コンパイル時間 2,620 ms
コンパイル使用メモリ 80,820 KB
実行使用メモリ 42,856 KB
最終ジャッジ日時 2024-09-21 19:48:34
合計ジャッジ時間 13,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,432 KB
testcase_01 AC 134 ms
41,400 KB
testcase_02 AC 163 ms
42,544 KB
testcase_03 AC 168 ms
42,744 KB
testcase_04 AC 167 ms
42,416 KB
testcase_05 AC 164 ms
42,688 KB
testcase_06 AC 164 ms
42,500 KB
testcase_07 AC 166 ms
42,856 KB
testcase_08 AC 163 ms
42,416 KB
testcase_09 AC 166 ms
42,284 KB
testcase_10 AC 167 ms
42,748 KB
testcase_11 AC 166 ms
42,596 KB
testcase_12 AC 167 ms
42,804 KB
testcase_13 AC 166 ms
42,724 KB
testcase_14 AC 163 ms
42,416 KB
testcase_15 AC 163 ms
42,544 KB
testcase_16 AC 164 ms
42,676 KB
testcase_17 AC 164 ms
42,628 KB
testcase_18 AC 152 ms
42,120 KB
testcase_19 AC 148 ms
42,048 KB
testcase_20 AC 161 ms
42,772 KB
testcase_21 AC 161 ms
42,644 KB
testcase_22 AC 164 ms
42,384 KB
testcase_23 AC 162 ms
42,312 KB
testcase_24 AC 162 ms
42,632 KB
testcase_25 AC 163 ms
42,416 KB
testcase_26 AC 167 ms
42,388 KB
testcase_27 AC 165 ms
42,628 KB
testcase_28 AC 163 ms
42,724 KB
testcase_29 AC 165 ms
42,720 KB
testcase_30 AC 164 ms
42,496 KB
testcase_31 AC 164 ms
42,636 KB
testcase_32 AC 162 ms
42,464 KB
testcase_33 AC 165 ms
42,396 KB
testcase_34 AC 170 ms
42,372 KB
testcase_35 AC 165 ms
42,584 KB
testcase_36 AC 164 ms
42,804 KB
testcase_37 AC 171 ms
42,592 KB
testcase_38 AC 169 ms
42,320 KB
testcase_39 AC 165 ms
42,764 KB
testcase_40 AC 164 ms
42,340 KB
testcase_41 AC 163 ms
42,552 KB
testcase_42 AC 169 ms
42,340 KB
testcase_43 AC 166 ms
42,856 KB
testcase_44 AC 164 ms
42,572 KB
testcase_45 AC 163 ms
42,740 KB
testcase_46 AC 161 ms
42,764 KB
testcase_47 AC 167 ms
42,768 KB
testcase_48 AC 166 ms
42,688 KB
testcase_49 AC 168 ms
42,592 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 167 ms
42,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long N = scan.nextLong();
		scan.close();
		
		if(N < 26) {
			System.out.println((char)(N+'A'));
		} else {
			ArrayList<Long> list = new ArrayList();
			long value = N;
			while(true) {
				long tmp1 = value / 26;
				long tmp2 = value % 26;
				list.add(tmp2);
				if(tmp1 <= 26) {
					list.add(tmp1);
					break;
				}
				value = tmp1;
			}
			
			int n = list.size();
			String out = "";
			for(int i=0; i<n; i++) {
				long v = list.get(i);
				if(i>0) {
					v--;
					if(v==-1) {
						v=25L;
						if(i<n-1) {
							long v2 = list.get(i+1);
							list.set(i+1, v2-1);
						}
					}
				}
				out = (char)(v+'A') + out;
			}
			System.out.println(out);
		}
	}
}
0