結果

問題 No.1026 OGAWA's New Keyboard
ユーザー tentententen
提出日時 2021-02-09 07:58:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 693 ms / 1,000 ms
コード長 534 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 66,012 KB
最終ジャッジ日時 2024-07-06 13:28:30
合計ジャッジ時間 8,389 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,588 KB
testcase_01 AC 119 ms
53,676 KB
testcase_02 AC 116 ms
53,864 KB
testcase_03 AC 113 ms
53,832 KB
testcase_04 AC 693 ms
66,012 KB
testcase_05 AC 187 ms
57,336 KB
testcase_06 AC 200 ms
57,608 KB
testcase_07 AC 565 ms
62,080 KB
testcase_08 AC 197 ms
56,660 KB
testcase_09 AC 135 ms
54,092 KB
testcase_10 AC 172 ms
54,604 KB
testcase_11 AC 163 ms
54,152 KB
testcase_12 AC 123 ms
54,156 KB
testcase_13 AC 118 ms
53,580 KB
testcase_14 AC 121 ms
54,024 KB
testcase_15 AC 127 ms
54,092 KB
testcase_16 AC 148 ms
54,132 KB
testcase_17 AC 344 ms
59,172 KB
testcase_18 AC 152 ms
54,416 KB
testcase_19 AC 340 ms
59,132 KB
testcase_20 AC 118 ms
53,860 KB
testcase_21 AC 117 ms
53,824 KB
testcase_22 AC 149 ms
54,304 KB
testcase_23 AC 156 ms
54,344 KB
testcase_24 AC 420 ms
62,036 KB
testcase_25 AC 162 ms
54,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        StringBuilder head = new StringBuilder();
        StringBuilder tail = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (sc.next().charAt(0) == '0') {
                tail.append(sc.next());
            } else {
                head.append(sc.next());
            }
        }
        System.out.println(head.reverse().append(tail));
    }
}
0