結果

問題 No.1133 キムワイプイーター
ユーザー shi-moshi-mo
提出日時 2020-09-29 00:26:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-07-02 21:57:58
合計ジャッジ時間 10,004 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 223 ms
24,960 KB
testcase_03 AC 427 ms
44,800 KB
testcase_04 AC 442 ms
46,336 KB
testcase_05 AC 454 ms
48,128 KB
testcase_06 AC 444 ms
46,592 KB
testcase_07 AC 328 ms
35,456 KB
testcase_08 AC 214 ms
24,960 KB
testcase_09 AC 408 ms
42,496 KB
testcase_10 AC 589 ms
61,440 KB
testcase_11 AC 519 ms
55,168 KB
testcase_12 AC 449 ms
47,360 KB
testcase_13 AC 517 ms
54,784 KB
testcase_14 AC 428 ms
44,544 KB
testcase_15 AC 314 ms
33,664 KB
testcase_16 AC 220 ms
24,832 KB
testcase_17 AC 99 ms
12,544 KB
testcase_18 AC 109 ms
12,800 KB
testcase_19 AC 99 ms
12,672 KB
testcase_20 AC 107 ms
12,672 KB
testcase_21 AC 108 ms
12,672 KB
testcase_22 AC 109 ms
12,800 KB
testcase_23 AC 92 ms
12,032 KB
testcase_24 AC 90 ms
12,032 KB
testcase_25 AC 100 ms
12,672 KB
testcase_26 AC 90 ms
12,160 KB
testcase_27 AC 89 ms
12,288 KB
testcase_28 AC 90 ms
12,160 KB
testcase_29 AC 91 ms
12,288 KB
testcase_30 AC 109 ms
12,928 KB
testcase_31 AC 90 ms
12,288 KB
testcase_32 AC 91 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, _ = gets.split.map(&:to_i)
s = gets.chomp!.split(//)

mat = Array.new(n+1){ [1] * (n+1) }
mat[0][0] = 0
pos = { x: 0, y: 0 }
s.each do |c|
  case c
  when 'U'
    pos[:y] += 1
  when 'R'
    pos[:x] += 1
  when 'L'
    pos[:x] -= 1
  when 'D'
    pos[:y] -= 1
  else
    raise 'must not happen'
  end
  mat[ pos[:y] ][ pos[:x] ] = 0
end

n.downto(0) do |i|
  puts mat[i].join(' ')
end
0