結果
問題 | No.2614 Delete ABC |
ユーザー | tenten |
提出日時 | 2024-07-03 11:07:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,495 bytes |
コンパイル時間 | 2,409 ms |
コンパイル使用メモリ | 88,452 KB |
実行使用メモリ | 51,972 KB |
最終ジャッジ日時 | 2024-07-03 11:07:14 |
合計ジャッジ時間 | 3,068 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int t = sc.nextInt(); String[] base = {"ABC", "ACB"}; String result = IntStream.range(0, t).mapToObj(a -> { int n = sc.nextInt(); StringBuilder sb = new StringBuilder(); while (n-- > 0) { sb.append(base[n % 2]); } return sb.toString(); }).collect(Collectors.joining("\n")); System.out.println(result); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }