結果

問題 No.327 アルファベット列
ユーザー kou6839kou6839
提出日時 2015-12-20 00:22:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 2,591 ms
コンパイル使用メモリ 79,204 KB
実行使用メモリ 56,952 KB
最終ジャッジ日時 2024-09-17 11:07:12
合計ジャッジ時間 13,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
54,556 KB
testcase_01 AC 165 ms
54,664 KB
testcase_02 AC 163 ms
54,932 KB
testcase_03 AC 164 ms
54,688 KB
testcase_04 WA -
testcase_05 AC 162 ms
54,860 KB
testcase_06 WA -
testcase_07 AC 165 ms
55,000 KB
testcase_08 AC 165 ms
54,680 KB
testcase_09 AC 165 ms
54,932 KB
testcase_10 AC 163 ms
54,864 KB
testcase_11 AC 161 ms
54,620 KB
testcase_12 AC 167 ms
55,076 KB
testcase_13 AC 165 ms
54,764 KB
testcase_14 AC 165 ms
55,036 KB
testcase_15 AC 162 ms
54,492 KB
testcase_16 AC 165 ms
54,884 KB
testcase_17 AC 162 ms
55,048 KB
testcase_18 AC 164 ms
55,032 KB
testcase_19 AC 164 ms
54,660 KB
testcase_20 AC 147 ms
54,388 KB
testcase_21 AC 165 ms
54,568 KB
testcase_22 AC 166 ms
54,776 KB
testcase_23 AC 169 ms
54,840 KB
testcase_24 AC 164 ms
55,084 KB
testcase_25 AC 163 ms
54,864 KB
testcase_26 AC 159 ms
55,100 KB
testcase_27 AC 163 ms
54,844 KB
testcase_28 AC 166 ms
54,528 KB
testcase_29 AC 166 ms
54,788 KB
testcase_30 WA -
testcase_31 AC 164 ms
54,836 KB
testcase_32 AC 163 ms
54,768 KB
testcase_33 AC 165 ms
54,868 KB
testcase_34 AC 163 ms
54,736 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.net.NetworkInterface;
import java.util.*;

public class Main {
	static long gcd(long a,long b){
		return b == 0 ? a : gcd(b, a%b);
	}
	static long lcm(long a, long b){
		return a*b/gcd(a, b);
	}
	static int[] dx = {1,0,-1,0};
	static int[] dy = {0,1,0,-1};
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		
		long n = sc.nextLong();
		String ans = "";
		ans+=(char)((int)'A'+n%26);
		int ind = 1;
		while(n>=Math.pow(26, ind)) ind++;
		ind--;
		String unko="";
		for(int i=ind;i>=1;i--){
			unko+=(char)((int)'A'+(int)(n/Math.pow(26, i))-1);
			n%=Math.pow(26, i);
		}
		System.out.println(unko+ans);
	} 
}
0