結果

問題 No.1026 OGAWA's New Keyboard
ユーザー ks2mks2m
提出日時 2020-04-14 16:01:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 355 ms / 1,000 ms
コード長 639 bytes
コンパイル時間 3,910 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 46,172 KB
最終ジャッジ日時 2024-09-16 04:57:48
合計ジャッジ時間 5,828 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,820 KB
testcase_01 AC 53 ms
36,816 KB
testcase_02 AC 53 ms
36,892 KB
testcase_03 AC 53 ms
36,704 KB
testcase_04 AC 355 ms
46,172 KB
testcase_05 AC 122 ms
40,408 KB
testcase_06 AC 131 ms
41,012 KB
testcase_07 AC 302 ms
45,764 KB
testcase_08 AC 104 ms
39,620 KB
testcase_09 AC 55 ms
36,380 KB
testcase_10 AC 71 ms
37,516 KB
testcase_11 AC 62 ms
37,000 KB
testcase_12 AC 54 ms
36,808 KB
testcase_13 AC 53 ms
36,784 KB
testcase_14 AC 55 ms
36,384 KB
testcase_15 AC 54 ms
36,952 KB
testcase_16 AC 63 ms
37,056 KB
testcase_17 AC 198 ms
45,064 KB
testcase_18 AC 79 ms
37,456 KB
testcase_19 AC 186 ms
44,092 KB
testcase_20 AC 54 ms
36,900 KB
testcase_21 AC 53 ms
36,472 KB
testcase_22 AC 60 ms
37,056 KB
testcase_23 AC 67 ms
36,900 KB
testcase_24 AC 277 ms
45,752 KB
testcase_25 AC 82 ms
37,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		StringBuilder sb0 = new StringBuilder();
		StringBuilder sb1 = new StringBuilder();
		for (int i = 0; i < n; i++) {
			sa = br.readLine().split(" ");
			if (sa[0].equals("0")) {
				sb0.append(sa[1]);
			} else {
				sb1.append(sa[1]);
			}
		}
		br.close();

		sb1.reverse();
		sb1.append(sb0);
		System.out.println(sb1.toString());
	}
}
0