結果

問題 No.327 アルファベット列
ユーザー spaciaspacia
提出日時 2016-06-08 17:18:30
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 563 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 76,508 KB
実行使用メモリ 56,336 KB
最終ジャッジ日時 2024-10-09 03:12:26
合計ジャッジ時間 9,046 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,220 KB
testcase_01 AC 114 ms
41,228 KB
testcase_02 AC 109 ms
41,080 KB
testcase_03 AC 118 ms
41,112 KB
testcase_04 AC 115 ms
41,228 KB
testcase_05 AC 111 ms
41,024 KB
testcase_06 AC 112 ms
41,196 KB
testcase_07 AC 116 ms
40,860 KB
testcase_08 AC 114 ms
41,140 KB
testcase_09 AC 99 ms
40,204 KB
testcase_10 AC 107 ms
41,132 KB
testcase_11 AC 109 ms
40,440 KB
testcase_12 AC 117 ms
41,128 KB
testcase_13 AC 104 ms
40,296 KB
testcase_14 AC 100 ms
39,856 KB
testcase_15 AC 113 ms
41,120 KB
testcase_16 AC 114 ms
41,096 KB
testcase_17 AC 111 ms
41,148 KB
testcase_18 AC 106 ms
40,420 KB
testcase_19 AC 98 ms
39,920 KB
testcase_20 AC 116 ms
41,224 KB
testcase_21 RE -
testcase_22 WA -
testcase_23 RE -
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 RE -
testcase_30 AC 112 ms
41,328 KB
testcase_31 AC 109 ms
40,984 KB
testcase_32 RE -
testcase_33 AC 114 ms
41,388 KB
testcase_34 AC 104 ms
39,900 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 WA -
testcase_46 RE -
testcase_47 WA -
testcase_48 WA -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main (String[] args) {

		Scanner sc = new Scanner(System.in);

		System.out.println(solve(sc.nextLong()));

		sc.close();

	}

	public static String solve (long n) {

		String[] alp = {"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"};
		String ret = alp[(int)(n % 26)];

		long d = 26;
		while (n / d >= 1) {
			int i = (int)(n / d) % 26 - 1;
			if (i == -1) i = 25;
			ret = alp[i] + ret;
			n -= d;
			d *= 26;
		}

		return ret;

	}

}
0