結果

問題 No.1026 OGAWA's New Keyboard
ユーザー htensaihtensai
提出日時 2020-04-30 10:07:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 849 ms / 1,000 ms
コード長 603 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 75,656 KB
実行使用メモリ 60,660 KB
最終ジャッジ日時 2024-09-16 05:05:45
合計ジャッジ時間 9,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,908 KB
testcase_01 AC 113 ms
41,028 KB
testcase_02 AC 112 ms
41,232 KB
testcase_03 AC 103 ms
40,068 KB
testcase_04 AC 849 ms
60,660 KB
testcase_05 AC 221 ms
46,392 KB
testcase_06 AC 247 ms
47,320 KB
testcase_07 AC 599 ms
54,000 KB
testcase_08 AC 198 ms
45,960 KB
testcase_09 AC 124 ms
41,380 KB
testcase_10 AC 168 ms
42,468 KB
testcase_11 AC 162 ms
42,516 KB
testcase_12 AC 130 ms
41,612 KB
testcase_13 AC 106 ms
39,808 KB
testcase_14 AC 134 ms
41,564 KB
testcase_15 AC 134 ms
41,132 KB
testcase_16 AC 188 ms
42,964 KB
testcase_17 AC 519 ms
48,184 KB
testcase_18 AC 169 ms
43,076 KB
testcase_19 AC 469 ms
48,272 KB
testcase_20 AC 126 ms
40,916 KB
testcase_21 AC 105 ms
39,932 KB
testcase_22 AC 167 ms
42,412 KB
testcase_23 AC 169 ms
42,976 KB
testcase_24 AC 623 ms
52,364 KB
testcase_25 AC 173 ms
43,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        ArrayDeque<Character> deq = new ArrayDeque<>();
        for (int i = 0; i < n; i++) {
            if (sc.nextInt() == 0) {
                deq.addLast(sc.next().charAt(0));
            } else {
                deq.addFirst(sc.next().charAt(0));
            }
        }
        StringBuilder sb = new StringBuilder();
        while (deq.size() > 0) {
            sb.append(deq.poll());
        }
        System.out.println(sb);
    }
}
0