結果

問題 No.327 アルファベット列
ユーザー kou6839kou6839
提出日時 2015-12-20 00:49:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 670 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 79,656 KB
実行使用メモリ 57,272 KB
最終ジャッジ日時 2024-09-17 11:11:21
合計ジャッジ時間 10,844 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
55,208 KB
testcase_01 AC 134 ms
54,740 KB
testcase_02 WA -
testcase_03 AC 141 ms
54,844 KB
testcase_04 AC 139 ms
54,464 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 148 ms
54,992 KB
testcase_08 AC 154 ms
54,968 KB
testcase_09 AC 127 ms
54,756 KB
testcase_10 WA -
testcase_11 AC 134 ms
54,488 KB
testcase_12 AC 139 ms
54,560 KB
testcase_13 AC 128 ms
54,432 KB
testcase_14 AC 139 ms
54,544 KB
testcase_15 AC 139 ms
54,808 KB
testcase_16 AC 142 ms
54,784 KB
testcase_17 AC 145 ms
54,800 KB
testcase_18 AC 139 ms
54,728 KB
testcase_19 WA -
testcase_20 AC 152 ms
55,076 KB
testcase_21 AC 143 ms
54,700 KB
testcase_22 AC 135 ms
54,728 KB
testcase_23 AC 141 ms
54,744 KB
testcase_24 AC 141 ms
55,012 KB
testcase_25 WA -
testcase_26 AC 146 ms
54,352 KB
testcase_27 AC 150 ms
54,648 KB
testcase_28 WA -
testcase_29 AC 126 ms
54,628 KB
testcase_30 AC 138 ms
54,596 KB
testcase_31 WA -
testcase_32 AC 145 ms
54,996 KB
testcase_33 AC 151 ms
54,948 KB
testcase_34 AC 140 ms
54,876 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(27, ind)) ind++;
		ind--;
		String unko="";
		for(int i=ind;i>=1;i--){
			unko+=(char)((int)'A'+(int)(n/Math.pow(26, i))+(ind==1?-1:-1));
			n%=Math.pow(26, i);
		}
		System.out.println(unko+ans);
	} 
}
0