結果

問題 No.327 アルファベット列
ユーザー ぴろずぴろず
提出日時 2015-12-20 21:55:45
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 73,652 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-10-06 21:52:57
合計ジャッジ時間 10,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

package no327;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong() + 1;
		long[] ans = new long[15];
		int l = 0;
		while(n > 0) {
			ans[l] += n % 26;
			if (ans[l] == 0) {
				ans[l] = 26;
				n -= 26;
			}
			l++;
			n /= 26;
		}
		for(int i=l-1;i>=0;i--) {
			System.out.print((char) (ans[i] - 1 + 'A'));
		}
		System.out.println();
	}

}
0