結果
| 問題 | No.327 アルファベット列 |
| コンテスト | |
| ユーザー |
kou6839
|
| 提出日時 | 2015-12-20 00:52:49 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 783 bytes |
| コンパイル時間 | 2,027 ms |
| コンパイル使用メモリ | 79,660 KB |
| 実行使用メモリ | 57,052 KB |
| 最終ジャッジ日時 | 2024-09-17 11:11:34 |
| 合計ジャッジ時間 | 10,992 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 WA * 25 |
ソースコード
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);
if(n<=25){
System.out.println(ans);
return;
}
if(n==26){
System.out.println("AA");
return;
}
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);
}
}
kou6839