結果

問題 No.1026 OGAWA's New Keyboard
ユーザー joybeeeejoybeeee
提出日時 2020-05-14 14:38:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 923 ms / 1,000 ms
コード長 599 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 76,500 KB
実行使用メモリ 63,108 KB
最終ジャッジ日時 2024-09-16 05:06:39
合計ジャッジ時間 10,265 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,160 KB
testcase_01 AC 129 ms
41,676 KB
testcase_02 AC 131 ms
41,304 KB
testcase_03 AC 130 ms
41,692 KB
testcase_04 AC 923 ms
63,108 KB
testcase_05 AC 234 ms
46,008 KB
testcase_06 AC 263 ms
47,664 KB
testcase_07 AC 787 ms
55,608 KB
testcase_08 AC 227 ms
46,376 KB
testcase_09 AC 135 ms
41,384 KB
testcase_10 AC 198 ms
43,740 KB
testcase_11 AC 189 ms
42,868 KB
testcase_12 AC 152 ms
41,816 KB
testcase_13 AC 131 ms
41,352 KB
testcase_14 AC 138 ms
41,608 KB
testcase_15 AC 164 ms
41,800 KB
testcase_16 AC 188 ms
42,812 KB
testcase_17 AC 574 ms
49,228 KB
testcase_18 AC 191 ms
43,604 KB
testcase_19 AC 554 ms
49,076 KB
testcase_20 AC 144 ms
41,696 KB
testcase_21 AC 133 ms
41,144 KB
testcase_22 AC 170 ms
42,592 KB
testcase_23 AC 191 ms
43,332 KB
testcase_24 AC 732 ms
54,460 KB
testcase_25 AC 197 ms
44,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      int n = sc.nextInt();
      Deque<Character> deque = new LinkedList<>();
      for(int i = 0; i < n; i++) {
        int t = sc.nextInt();
        char c = sc.next().charAt(0);
        if(t == 0) { // tail
          deque.addLast(c);
        } else { // head
          deque.addFirst(c);
        }
      }
      StringBuilder sb = new StringBuilder();
      while(!deque.isEmpty())
        sb.append(deque.pollFirst());
      System.out.println(sb.toString());
  }
}
0