結果

問題 No.327 アルファベット列
ユーザー spaciaspacia
提出日時 2016-06-08 17:20:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 2,981 ms
コンパイル使用メモリ 77,124 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-10-09 03:12:43
合計ジャッジ時間 10,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,088 KB
testcase_01 AC 102 ms
40,736 KB
testcase_02 AC 100 ms
40,216 KB
testcase_03 AC 120 ms
41,136 KB
testcase_04 AC 115 ms
40,988 KB
testcase_05 AC 110 ms
41,036 KB
testcase_06 AC 98 ms
39,860 KB
testcase_07 AC 109 ms
41,112 KB
testcase_08 AC 115 ms
41,164 KB
testcase_09 AC 103 ms
40,128 KB
testcase_10 AC 112 ms
41,020 KB
testcase_11 AC 109 ms
40,920 KB
testcase_12 AC 101 ms
40,196 KB
testcase_13 AC 111 ms
41,176 KB
testcase_14 AC 102 ms
39,972 KB
testcase_15 AC 113 ms
41,256 KB
testcase_16 AC 104 ms
39,880 KB
testcase_17 AC 110 ms
41,088 KB
testcase_18 AC 113 ms
41,184 KB
testcase_19 AC 107 ms
40,152 KB
testcase_20 AC 99 ms
39,560 KB
testcase_21 AC 111 ms
41,028 KB
testcase_22 AC 99 ms
40,184 KB
testcase_23 AC 112 ms
41,072 KB
testcase_24 AC 110 ms
41,068 KB
testcase_25 AC 101 ms
40,272 KB
testcase_26 AC 100 ms
40,140 KB
testcase_27 AC 114 ms
41,200 KB
testcase_28 AC 115 ms
41,164 KB
testcase_29 AC 114 ms
41,124 KB
testcase_30 AC 98 ms
39,852 KB
testcase_31 AC 113 ms
40,820 KB
testcase_32 AC 122 ms
39,756 KB
testcase_33 AC 99 ms
39,472 KB
testcase_34 AC 113 ms
41,184 KB
testcase_35 AC 103 ms
40,108 KB
testcase_36 AC 119 ms
40,884 KB
testcase_37 AC 104 ms
39,948 KB
testcase_38 AC 108 ms
40,712 KB
testcase_39 AC 104 ms
40,160 KB
testcase_40 AC 120 ms
39,844 KB
testcase_41 AC 119 ms
41,164 KB
testcase_42 AC 117 ms
40,988 KB
testcase_43 AC 119 ms
41,092 KB
testcase_44 AC 112 ms
40,372 KB
testcase_45 AC 107 ms
40,196 KB
testcase_46 AC 118 ms
41,068 KB
testcase_47 AC 117 ms
41,376 KB
testcase_48 AC 107 ms
40,048 KB
testcase_49 AC 113 ms
40,960 KB
testcase_50 AC 119 ms
40,936 KB
testcase_51 AC 110 ms
39,744 KB
testcase_52 AC 120 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

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