結果

問題 No.327 アルファベット列
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:30:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 3,417 ms
コンパイル使用メモリ 76,308 KB
実行使用メモリ 42,632 KB
最終ジャッジ日時 2024-11-22 12:23:55
合計ジャッジ時間 13,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,444 KB
testcase_01 AC 127 ms
41,056 KB
testcase_02 AC 157 ms
42,340 KB
testcase_03 AC 159 ms
42,224 KB
testcase_04 AC 155 ms
42,368 KB
testcase_05 AC 152 ms
42,084 KB
testcase_06 AC 159 ms
42,376 KB
testcase_07 AC 144 ms
42,152 KB
testcase_08 AC 160 ms
42,232 KB
testcase_09 AC 142 ms
41,852 KB
testcase_10 AC 167 ms
42,384 KB
testcase_11 AC 160 ms
42,180 KB
testcase_12 AC 158 ms
42,496 KB
testcase_13 AC 162 ms
42,448 KB
testcase_14 AC 157 ms
42,460 KB
testcase_15 AC 156 ms
42,256 KB
testcase_16 AC 141 ms
42,032 KB
testcase_17 AC 159 ms
42,368 KB
testcase_18 AC 160 ms
42,300 KB
testcase_19 AC 156 ms
42,452 KB
testcase_20 AC 141 ms
42,052 KB
testcase_21 AC 161 ms
42,384 KB
testcase_22 AC 156 ms
42,220 KB
testcase_23 AC 156 ms
42,632 KB
testcase_24 AC 144 ms
42,204 KB
testcase_25 AC 164 ms
42,080 KB
testcase_26 AC 146 ms
42,004 KB
testcase_27 AC 161 ms
42,448 KB
testcase_28 AC 156 ms
42,556 KB
testcase_29 AC 156 ms
42,272 KB
testcase_30 AC 157 ms
42,372 KB
testcase_31 AC 156 ms
42,364 KB
testcase_32 AC 155 ms
42,368 KB
testcase_33 AC 154 ms
42,136 KB
testcase_34 AC 156 ms
42,368 KB
testcase_35 AC 141 ms
42,028 KB
testcase_36 AC 154 ms
42,444 KB
testcase_37 AC 158 ms
42,376 KB
testcase_38 AC 160 ms
42,400 KB
testcase_39 AC 144 ms
42,080 KB
testcase_40 AC 166 ms
42,324 KB
testcase_41 AC 159 ms
42,592 KB
testcase_42 AC 146 ms
41,732 KB
testcase_43 AC 160 ms
42,112 KB
testcase_44 AC 158 ms
42,452 KB
testcase_45 AC 158 ms
42,404 KB
testcase_46 AC 158 ms
42,172 KB
testcase_47 AC 155 ms
42,632 KB
testcase_48 AC 158 ms
42,288 KB
testcase_49 AC 155 ms
42,468 KB
testcase_50 AC 158 ms
42,328 KB
testcase_51 AC 158 ms
42,548 KB
testcase_52 AC 161 ms
42,344 KB
権限があれば一括ダウンロードができます

ソースコード

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();
		System.out.println(get(n));
	}
	public static String get(long n){
		if(n < 26){
			return ""+ (char)('A' + (n % 26));
		}
		return get(n/26 - 1) + (char)('A' + (n % 26));
	}
}
0