結果

問題 No.1133 キムワイプイーター
ユーザー tentententen
提出日時 2020-08-17 22:33:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 79,340 KB
実行使用メモリ 52,924 KB
最終ジャッジ日時 2024-10-11 11:27:33
合計ジャッジ時間 12,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,188 KB
testcase_01 AC 134 ms
41,028 KB
testcase_02 AC 285 ms
46,564 KB
testcase_03 AC 391 ms
52,468 KB
testcase_04 AC 368 ms
52,324 KB
testcase_05 AC 385 ms
52,924 KB
testcase_06 AC 363 ms
52,024 KB
testcase_07 AC 349 ms
48,932 KB
testcase_08 AC 288 ms
46,908 KB
testcase_09 AC 361 ms
50,416 KB
testcase_10 AC 405 ms
52,532 KB
testcase_11 AC 385 ms
52,880 KB
testcase_12 AC 386 ms
52,576 KB
testcase_13 AC 413 ms
52,048 KB
testcase_14 AC 330 ms
48,568 KB
testcase_15 AC 320 ms
47,804 KB
testcase_16 AC 288 ms
46,676 KB
testcase_17 AC 159 ms
41,704 KB
testcase_18 AC 158 ms
41,844 KB
testcase_19 AC 159 ms
41,568 KB
testcase_20 AC 165 ms
41,960 KB
testcase_21 AC 158 ms
42,368 KB
testcase_22 AC 157 ms
42,492 KB
testcase_23 AC 135 ms
41,344 KB
testcase_24 AC 122 ms
39,628 KB
testcase_25 AC 152 ms
41,616 KB
testcase_26 AC 133 ms
40,792 KB
testcase_27 AC 135 ms
40,920 KB
testcase_28 AC 133 ms
41,180 KB
testcase_29 AC 133 ms
40,924 KB
testcase_30 AC 158 ms
41,988 KB
testcase_31 AC 135 ms
41,016 KB
testcase_32 AC 135 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		HashSet<Integer> set = new HashSet<>();
		set.add(0);
		char[] arr = sc.next().toCharArray();
		int current = 0;
		for (char c : arr) {
		    if (c == 'L') {
		        current--;
		    } else if (c == 'U') {
		        current += n + 1;
		    } else if (c == 'D') {
		        current -= n + 1;
		    } else {
		        current++;
		    }
		    set.add(current);
		}
		StringBuilder sb = new StringBuilder();
		for (int i = n; i >= 0; i--) {
		    for (int j = 0; j <= n; j++) {
		        if (j > 0) {
		            sb.append(" ");
		        }
		        if (set.contains(i * (n + 1) + j)) {
		            sb.append("0");
		        } else {
		            sb.append("1");
		        }
		    }
		    sb.append("\n");
		}
		System.out.print(sb);
	}
}
0