結果

問題 No.1133 キムワイプイーター
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-19 14:08:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 956 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 3,468 ms
コンパイル使用メモリ 78,024 KB
実行使用メモリ 106,776 KB
最終ジャッジ日時 2024-11-18 08:40:35
合計ジャッジ時間 22,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,532 KB
testcase_01 AC 134 ms
41,448 KB
testcase_02 AC 596 ms
61,768 KB
testcase_03 AC 911 ms
93,112 KB
testcase_04 AC 901 ms
92,896 KB
testcase_05 AC 916 ms
93,068 KB
testcase_06 AC 852 ms
92,928 KB
testcase_07 AC 815 ms
78,008 KB
testcase_08 AC 760 ms
60,976 KB
testcase_09 AC 790 ms
93,300 KB
testcase_10 AC 898 ms
104,684 KB
testcase_11 AC 955 ms
106,776 KB
testcase_12 AC 905 ms
93,172 KB
testcase_13 AC 956 ms
106,772 KB
testcase_14 AC 623 ms
91,948 KB
testcase_15 AC 635 ms
71,028 KB
testcase_16 AC 686 ms
62,960 KB
testcase_17 AC 333 ms
44,148 KB
testcase_18 AC 452 ms
44,908 KB
testcase_19 AC 319 ms
43,812 KB
testcase_20 AC 412 ms
44,772 KB
testcase_21 AC 434 ms
44,736 KB
testcase_22 AC 466 ms
44,768 KB
testcase_23 AC 133 ms
41,432 KB
testcase_24 AC 132 ms
41,276 KB
testcase_25 AC 312 ms
44,024 KB
testcase_26 AC 144 ms
41,548 KB
testcase_27 AC 139 ms
41,684 KB
testcase_28 AC 137 ms
41,280 KB
testcase_29 AC 127 ms
40,388 KB
testcase_30 AC 465 ms
44,728 KB
testcase_31 AC 142 ms
41,644 KB
testcase_32 AC 138 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class HelloWorld {
		public static void main (String[] args) {
			Scanner sc = new Scanner(System.in);
			int n = sc.nextInt();
			int m =sc.nextInt();
			sc.nextLine();
			String[] strs = sc.nextLine().split("");
			sc.close();

			int[][] matrix = new int[n+1][n+1];
			int[] position_now = {n,0};
			matrix[position_now[0]][position_now[1]] = -1;
			for (int i = 0; i < m; i ++) {

				if (strs[i].equals("R")) {
					position_now[1]++;
				}
				if (strs[i].equals("U")) {
					position_now[0]--;
				}
				if (strs[i].equals("L")) {
					position_now[1]--;
				}
				if (strs[i].equals("D")) {
					position_now[0]++;
				}
				matrix[position_now[0]][position_now[1]] = -1;
			}


			for (int i = 0; i < n+1; i ++) {
				for (int j = 0; j < n + 1; j ++) {
					System.out.print(matrix[i][j]==-1? "0":"1");
					if (j == n) {
						break;
					}
					System.out.print(" ");
				}
				System.out.println();
			}


	}
}
0