結果

問題 No.254 文字列の構成
ユーザー tentententen
提出日時 2020-12-23 12:05:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 844 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 83,860 KB
実行使用メモリ 43,632 KB
最終ジャッジ日時 2024-09-21 16:22:04
合計ジャッジ時間 8,234 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
42,312 KB
testcase_01 AC 155 ms
42,664 KB
testcase_02 AC 156 ms
42,712 KB
testcase_03 AC 141 ms
42,492 KB
testcase_04 AC 143 ms
42,496 KB
testcase_05 AC 129 ms
42,276 KB
testcase_06 AC 142 ms
42,608 KB
testcase_07 AC 127 ms
42,036 KB
testcase_08 AC 150 ms
42,444 KB
testcase_09 AC 144 ms
42,136 KB
testcase_10 AC 144 ms
42,428 KB
testcase_11 AC 144 ms
42,432 KB
testcase_12 AC 138 ms
41,968 KB
testcase_13 AC 141 ms
42,152 KB
testcase_14 AC 136 ms
42,180 KB
testcase_15 AC 142 ms
42,436 KB
testcase_16 AC 148 ms
43,348 KB
testcase_17 AC 172 ms
43,008 KB
testcase_18 AC 153 ms
43,632 KB
testcase_19 AC 158 ms
42,832 KB
testcase_20 AC 151 ms
42,672 KB
testcase_21 AC 170 ms
42,844 KB
testcase_22 AC 151 ms
42,996 KB
testcase_23 AC 157 ms
43,352 KB
testcase_24 AC 154 ms
43,068 KB
testcase_25 AC 151 ms
42,500 KB
testcase_26 AC 147 ms
42,752 KB
testcase_27 AC 159 ms
43,096 KB
testcase_28 AC 145 ms
42,760 KB
testcase_29 AC 158 ms
42,880 KB
testcase_30 AC 159 ms
43,028 KB
testcase_31 AC 173 ms
42,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] counts = new int[40000];
        counts[1] = 1;
        for (int i = 2; i < 40000; i++) {
            counts[i] = counts[i - 1] + 2 + i - 1 + i - 2;
        }
        StringBuilder sb = new StringBuilder();
        int idx = 0;
        for (int i = 39999; i >= 1; i--) {
            while (n >= counts[i]) {
                n -= counts[i];
                String tmp = (char)(idx % 26 + 'a') + "" + (char)((idx + 1) % 26 + 'a');
                for (int j = 1; j < i; j++) {
                    sb.append(tmp);
                }
                sb.append((char)(idx % 26 + 'a'));
                idx += 2;
            }
        }
        System.out.println(sb);
    }
}
0