結果
問題 | No.327 アルファベット列 |
ユーザー | kou6839 |
提出日時 | 2015-12-20 00:52:49 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 783 bytes |
コンパイル時間 | 2,027 ms |
コンパイル使用メモリ | 79,660 KB |
実行使用メモリ | 57,052 KB |
最終ジャッジ日時 | 2024-09-17 11:11:34 |
合計ジャッジ時間 | 10,992 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
54,996 KB |
testcase_01 | AC | 149 ms
54,828 KB |
testcase_02 | AC | 149 ms
54,744 KB |
testcase_03 | AC | 134 ms
54,496 KB |
testcase_04 | AC | 147 ms
55,104 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 141 ms
54,812 KB |
testcase_08 | AC | 150 ms
55,000 KB |
testcase_09 | AC | 141 ms
54,488 KB |
testcase_10 | WA | - |
testcase_11 | AC | 134 ms
54,676 KB |
testcase_12 | AC | 157 ms
54,832 KB |
testcase_13 | AC | 142 ms
54,620 KB |
testcase_14 | AC | 130 ms
54,256 KB |
testcase_15 | AC | 147 ms
54,824 KB |
testcase_16 | AC | 147 ms
54,916 KB |
testcase_17 | AC | 136 ms
54,604 KB |
testcase_18 | AC | 134 ms
54,756 KB |
testcase_19 | WA | - |
testcase_20 | AC | 156 ms
54,928 KB |
testcase_21 | AC | 128 ms
54,632 KB |
testcase_22 | AC | 149 ms
55,236 KB |
testcase_23 | AC | 144 ms
54,248 KB |
testcase_24 | AC | 156 ms
54,992 KB |
testcase_25 | WA | - |
testcase_26 | AC | 148 ms
55,140 KB |
testcase_27 | AC | 137 ms
54,536 KB |
testcase_28 | WA | - |
testcase_29 | AC | 147 ms
55,000 KB |
testcase_30 | AC | 151 ms
54,824 KB |
testcase_31 | WA | - |
testcase_32 | AC | 153 ms
54,928 KB |
testcase_33 | AC | 149 ms
54,828 KB |
testcase_34 | AC | 149 ms
54,812 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 | - |
ソースコード
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); } }