結果

問題 No.1133 キムワイプイーター
ユーザー kusagame12kusagame12
提出日時 2023-11-07 21:55:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 2,932 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 51,772 KB
最終ジャッジ日時 2024-09-25 23:28:49
合計ジャッジ時間 13,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,564 KB
testcase_01 AC 118 ms
40,368 KB
testcase_02 AC 370 ms
46,492 KB
testcase_03 AC 484 ms
51,772 KB
testcase_04 AC 460 ms
51,132 KB
testcase_05 AC 479 ms
51,752 KB
testcase_06 AC 437 ms
50,936 KB
testcase_07 AC 447 ms
47,600 KB
testcase_08 AC 439 ms
47,108 KB
testcase_09 AC 398 ms
48,100 KB
testcase_10 AC 429 ms
49,900 KB
testcase_11 AC 473 ms
51,108 KB
testcase_12 AC 469 ms
51,584 KB
testcase_13 AC 454 ms
49,912 KB
testcase_14 AC 278 ms
48,504 KB
testcase_15 AC 355 ms
47,736 KB
testcase_16 AC 412 ms
47,052 KB
testcase_17 AC 293 ms
44,684 KB
testcase_18 AC 406 ms
46,628 KB
testcase_19 AC 302 ms
44,796 KB
testcase_20 AC 375 ms
46,424 KB
testcase_21 AC 412 ms
46,508 KB
testcase_22 AC 403 ms
47,064 KB
testcase_23 AC 140 ms
41,720 KB
testcase_24 AC 136 ms
41,560 KB
testcase_25 AC 302 ms
44,776 KB
testcase_26 AC 141 ms
41,496 KB
testcase_27 AC 150 ms
40,508 KB
testcase_28 AC 136 ms
41,088 KB
testcase_29 AC 142 ms
41,636 KB
testcase_30 AC 403 ms
46,652 KB
testcase_31 AC 122 ms
40,544 KB
testcase_32 AC 134 ms
41,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {

        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        int m = sc.nextInt();
        char[] s = sc.next().toCharArray();
        
        int[][] kimwipes = new int[n+1][n+1];
        for(int i = 0 ; i <= n ; i++){
            Arrays.fill(kimwipes[i] , 1);
        }
        
        int x = 0;
        int y = 0;
        kimwipes[0][0] = 0;
        for(int i = 0 ; i < s.length ; i++){
            
            char c = s[i];
            
            if(c == 'U' && y < n){
                kimwipes[y+1][x] = 0;
                y++;
            }else if(c == 'D' && y > 0){
                kimwipes[y-1][x] = 0;
                y--;
            }else if(c == 'R' && x < n){
                kimwipes[y][x+1] = 0;
                x++;
            }else if(c == 'L' && x > 0){
                kimwipes[y][x-1] = 0;
                x--;
            }
            
        }
        
        for(int i = n ; i >= 0 ; i--){
            for(int j = 0 ; j <= n ; j++){
                System.out.print(kimwipes[i][j]+" ");
            }
            System.out.println();
        }
        
    }
}
0