結果

問題 No.1133 キムワイプイーター
ユーザー face4face4
提出日時 2020-08-02 14:45:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 1,161 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 78,056 KB
実行使用メモリ 52,800 KB
最終ジャッジ日時 2024-07-18 13:29:24
合計ジャッジ時間 15,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,380 KB
testcase_01 AC 120 ms
41,884 KB
testcase_02 AC 376 ms
46,380 KB
testcase_03 AC 546 ms
49,424 KB
testcase_04 AC 496 ms
49,112 KB
testcase_05 AC 570 ms
49,432 KB
testcase_06 AC 479 ms
49,332 KB
testcase_07 AC 520 ms
48,024 KB
testcase_08 AC 490 ms
48,264 KB
testcase_09 AC 399 ms
48,020 KB
testcase_10 AC 418 ms
49,208 KB
testcase_11 AC 490 ms
49,412 KB
testcase_12 AC 505 ms
49,220 KB
testcase_13 AC 431 ms
49,100 KB
testcase_14 AC 264 ms
46,020 KB
testcase_15 AC 343 ms
46,404 KB
testcase_16 AC 409 ms
47,668 KB
testcase_17 AC 308 ms
45,356 KB
testcase_18 AC 485 ms
52,800 KB
testcase_19 AC 303 ms
44,800 KB
testcase_20 AC 427 ms
46,204 KB
testcase_21 AC 453 ms
51,948 KB
testcase_22 AC 483 ms
52,092 KB
testcase_23 AC 115 ms
41,096 KB
testcase_24 AC 101 ms
40,232 KB
testcase_25 AC 312 ms
44,440 KB
testcase_26 AC 124 ms
41,476 KB
testcase_27 AC 120 ms
41,416 KB
testcase_28 AC 124 ms
41,424 KB
testcase_29 AC 122 ms
41,152 KB
testcase_30 AC 447 ms
47,644 KB
testcase_31 AC 109 ms
40,796 KB
testcase_32 AC 104 ms
40,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) throws IOException {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        String s = sc.next();
        int arr[][] = new int[n+1][n+1];
        for(int i = 0; i < n+1; i++){
            for(int j = 0; j < n+1; j++){
                arr[i][j] = 1;
            }
        }
        arr[0][0] = 0;
        int i = 0, j = 0;
        for(int x = 0; x < m; x++){
            switch(s.charAt(x)){
                case 'R':
                    j++;
                    break;
                case 'L':
                    j--;
                    break;
                case 'U':
                    i++;
                    break;
                case 'D':
                    i--;
                    break;
            }
            arr[i][j] = 0;
        }
        for(int k = n; k >= 0; k--){
            for(int l = 0; l <= n; l++){
                if(l > 0)   System.out.print(" ");
                System.out.print(arr[k][l]);
            }
            System.out.println();
        }
    }
}
0