結果
問題 |
No.254 文字列の構成
|
ユーザー |
![]() |
提出日時 | 2023-04-04 14:09:22 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 |
ソースコード
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(); } }