結果

問題 No.327 アルファベット列
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:20:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 398 bytes
コンパイル時間 3,602 ms
コンパイル使用メモリ 76,092 KB
実行使用メモリ 43,080 KB
最終ジャッジ日時 2024-11-22 12:21:10
合計ジャッジ時間 14,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 176 ms
42,840 KB
testcase_03 AC 177 ms
42,756 KB
testcase_04 AC 176 ms
42,560 KB
testcase_05 AC 177 ms
42,784 KB
testcase_06 WA -
testcase_07 AC 170 ms
42,964 KB
testcase_08 AC 174 ms
42,928 KB
testcase_09 AC 177 ms
42,724 KB
testcase_10 AC 156 ms
42,940 KB
testcase_11 AC 167 ms
42,528 KB
testcase_12 AC 180 ms
42,864 KB
testcase_13 AC 157 ms
42,476 KB
testcase_14 AC 172 ms
42,884 KB
testcase_15 AC 174 ms
42,912 KB
testcase_16 AC 172 ms
42,896 KB
testcase_17 AC 174 ms
42,884 KB
testcase_18 AC 174 ms
42,836 KB
testcase_19 AC 179 ms
43,040 KB
testcase_20 AC 177 ms
42,916 KB
testcase_21 AC 177 ms
42,788 KB
testcase_22 AC 178 ms
42,924 KB
testcase_23 AC 171 ms
42,896 KB
testcase_24 AC 173 ms
42,852 KB
testcase_25 AC 176 ms
42,908 KB
testcase_26 AC 175 ms
42,800 KB
testcase_27 AC 177 ms
42,984 KB
testcase_28 AC 178 ms
42,916 KB
testcase_29 AC 174 ms
42,900 KB
testcase_30 AC 181 ms
42,924 KB
testcase_31 AC 172 ms
42,860 KB
testcase_32 AC 176 ms
42,968 KB
testcase_33 AC 160 ms
42,932 KB
testcase_34 AC 157 ms
42,900 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;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		long n = sc.nextLong();
		String s = "";
		s += (char) ('A' + (n % 26));
		n /= 26;
		while (n > 26) {
			if (n % 26 > 0) {
				s = (char) ('A' + (n % 26) - 1) + s;
			}
			n /= 26;
		}
		s = (char) ('A' + (n % 27) - 1) + s;
		System.out.println(s);
	}
}
0