結果

問題 No.1133 キムワイプイーター
ユーザー RISE70226821RISE70226821
提出日時 2020-08-03 17:27:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 929 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 2,662 ms
コンパイル使用メモリ 79,568 KB
実行使用メモリ 129,756 KB
最終ジャッジ日時 2024-09-13 10:27:31
合計ジャッジ時間 21,082 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
54,056 KB
testcase_01 AC 147 ms
54,148 KB
testcase_02 AC 626 ms
77,160 KB
testcase_03 AC 796 ms
110,132 KB
testcase_04 AC 807 ms
107,760 KB
testcase_05 AC 845 ms
111,752 KB
testcase_06 AC 786 ms
111,444 KB
testcase_07 AC 754 ms
90,348 KB
testcase_08 AC 722 ms
74,816 KB
testcase_09 AC 749 ms
94,684 KB
testcase_10 AC 929 ms
129,756 KB
testcase_11 AC 835 ms
113,852 KB
testcase_12 AC 812 ms
111,848 KB
testcase_13 AC 821 ms
113,940 KB
testcase_14 AC 633 ms
111,012 KB
testcase_15 AC 630 ms
85,424 KB
testcase_16 AC 663 ms
77,152 KB
testcase_17 AC 318 ms
58,392 KB
testcase_18 AC 421 ms
58,560 KB
testcase_19 AC 305 ms
58,224 KB
testcase_20 AC 379 ms
58,444 KB
testcase_21 AC 411 ms
58,632 KB
testcase_22 AC 434 ms
58,432 KB
testcase_23 AC 149 ms
54,112 KB
testcase_24 AC 149 ms
54,020 KB
testcase_25 AC 315 ms
57,932 KB
testcase_26 AC 154 ms
54,052 KB
testcase_27 AC 149 ms
54,264 KB
testcase_28 AC 151 ms
54,036 KB
testcase_29 AC 150 ms
54,020 KB
testcase_30 AC 442 ms
58,652 KB
testcase_31 AC 146 ms
54,028 KB
testcase_32 AC 147 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		String str = sc.next();
		String[] move = str.split("");
		
		// 移動
		int[][] grid = new int[N+1][N+1];
		for(int i = 0; i <= N; i++){
			for(int j = 0; j <= N; j++){
				grid[i][j] = 1;
			}
		}
		
		int posX = 0;
		int posY = N;
		grid[N][0] = 0;
		for(int i = 0; i < M; i++){
			if(move[i].equals("R")){
				posX++;
			}
			else if(move[i].equals("L")){
				posX--;
			}
			else if(move[i].equals("D")){
				posY++;
			}
			else if(move[i].equals("U")){
				posY--;
			}
			grid[posY][posX] = 0;
		}
		
		// 出力
		for(int i = 0; i <= N; i++){
			for(int j = 0; j <= N; j++){
				System.out.print(grid[i][j] + " ");
			}
			System.out.println("");
		}
	}

}
0