結果

問題 No.600 かい文回
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-24 22:48:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,158 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 83,592 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-11-27 07:42:32
合計ジャッジ時間 6,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,140 KB
testcase_01 AC 122 ms
54,224 KB
testcase_02 AC 120 ms
53,788 KB
testcase_03 AC 120 ms
53,876 KB
testcase_04 AC 124 ms
53,772 KB
testcase_05 AC 124 ms
54,020 KB
testcase_06 AC 121 ms
54,020 KB
testcase_07 AC 107 ms
52,588 KB
testcase_08 AC 123 ms
53,996 KB
testcase_09 AC 108 ms
52,592 KB
testcase_10 AC 118 ms
53,996 KB
testcase_11 AC 115 ms
53,432 KB
testcase_12 AC 123 ms
54,020 KB
testcase_13 AC 113 ms
53,448 KB
testcase_14 AC 107 ms
52,824 KB
testcase_15 AC 120 ms
54,028 KB
testcase_16 AC 108 ms
52,720 KB
testcase_17 WA -
testcase_18 AC 118 ms
53,832 KB
testcase_19 AC 103 ms
52,968 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        long n=scan.nextLong();
        String[] d=new String[32];
        int p=1;
        for(int i=0;i<20;++i){
            d[i]=Character.toString((char)(97+i));
        }
        for(int i=20;i<32;++i){
            int x=(i-20)/4;
            int y=(i-20)%4;
            char[] k={(char)(97+20+x),(char)(97+24+y)};
            d[i]=new String(k);
        }
        String c="a";
        StringBuilder sb=new StringBuilder();
        StringBuilder rev=new StringBuilder();
        int h=-1;
        for(int i=30;i>=0;--i){
            if(1L<<i>n){continue;}
            h=i;break;
        }
        for(int i=h-1;i>=0;--i){
            //2bai
            sb.append(c);
            rev.append(new StringBuilder(c).reverse());
            //+1
            if((n&1<<i)!=0){
                c=d[p++];
                sb.append(c);
                rev.append(new StringBuilder(c).reverse());
            }
        }
        String r=rev.reverse().toString()+sb;
        if(r.length()==0)r="s";
        System.out.println(r);
    }
}
0