結果
問題 | No.254 文字列の構成 |
ユーザー | tenten |
提出日時 | 2023-04-04 14:09:22 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 81 ms / 5,000 ms |
コード長 | 1,978 bytes |
コンパイル時間 | 4,064 ms |
コンパイル使用メモリ | 91,564 KB |
実行使用メモリ | 51,164 KB |
最終ジャッジ日時 | 2024-10-01 06:49:08 |
合計ジャッジ時間 | 7,064 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
50,124 KB |
testcase_01 | AC | 49 ms
50,220 KB |
testcase_02 | AC | 47 ms
50,340 KB |
testcase_03 | AC | 48 ms
50,248 KB |
testcase_04 | AC | 47 ms
50,096 KB |
testcase_05 | AC | 48 ms
49,828 KB |
testcase_06 | AC | 49 ms
50,080 KB |
testcase_07 | AC | 48 ms
50,432 KB |
testcase_08 | AC | 47 ms
50,204 KB |
testcase_09 | AC | 48 ms
49,932 KB |
testcase_10 | AC | 49 ms
50,380 KB |
testcase_11 | AC | 49 ms
50,264 KB |
testcase_12 | AC | 49 ms
50,320 KB |
testcase_13 | AC | 48 ms
50,432 KB |
testcase_14 | AC | 50 ms
50,500 KB |
testcase_15 | AC | 51 ms
50,236 KB |
testcase_16 | AC | 54 ms
49,932 KB |
testcase_17 | AC | 76 ms
51,160 KB |
testcase_18 | AC | 75 ms
51,164 KB |
testcase_19 | AC | 78 ms
50,964 KB |
testcase_20 | AC | 62 ms
50,668 KB |
testcase_21 | AC | 66 ms
51,048 KB |
testcase_22 | AC | 57 ms
50,100 KB |
testcase_23 | AC | 58 ms
50,744 KB |
testcase_24 | AC | 57 ms
50,340 KB |
testcase_25 | AC | 75 ms
50,960 KB |
testcase_26 | AC | 72 ms
50,952 KB |
testcase_27 | AC | 73 ms
51,008 KB |
testcase_28 | AC | 73 ms
50,944 KB |
testcase_29 | AC | 76 ms
50,960 KB |
testcase_30 | AC | 81 ms
51,152 KB |
testcase_31 | AC | 55 ms
49,972 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); StringBuilder sb = new StringBuilder(); int idx = 0; for (int i = 32000; i >= 1; i--) { while (n >= i * i) { n -= i * i; char first = (char)(idx + 'a'); char second = (char)(idx + 'b'); sb.append(first); for (int j = 0; j < i - 1; j++) { sb.append(second).append(first); } idx += 2; idx %= 26; } } System.out.println(sb); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }