結果

問題 No.1133 キムワイプイーター
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-07-30 02:38:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 811 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 93,824 KB
最終ジャッジ日時 2024-07-01 04:26:14
合計ジャッジ時間 11,951 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 289 ms
30,336 KB
testcase_03 AC 544 ms
60,672 KB
testcase_04 AC 572 ms
60,928 KB
testcase_05 AC 612 ms
64,128 KB
testcase_06 AC 573 ms
61,056 KB
testcase_07 AC 424 ms
43,264 KB
testcase_08 AC 271 ms
29,952 KB
testcase_09 AC 527 ms
59,648 KB
testcase_10 AC 811 ms
93,824 KB
testcase_11 AC 747 ms
87,296 KB
testcase_12 AC 610 ms
63,744 KB
testcase_13 AC 746 ms
87,168 KB
testcase_14 AC 562 ms
60,288 KB
testcase_15 AC 405 ms
42,624 KB
testcase_16 AC 281 ms
30,336 KB
testcase_17 AC 99 ms
12,672 KB
testcase_18 AC 108 ms
12,800 KB
testcase_19 AC 97 ms
12,544 KB
testcase_20 AC 103 ms
12,800 KB
testcase_21 AC 106 ms
12,928 KB
testcase_22 AC 107 ms
12,800 KB
testcase_23 AC 89 ms
12,032 KB
testcase_24 AC 90 ms
12,288 KB
testcase_25 AC 96 ms
12,672 KB
testcase_26 AC 88 ms
12,160 KB
testcase_27 AC 88 ms
12,160 KB
testcase_28 AC 89 ms
12,160 KB
testcase_29 AC 89 ms
12,416 KB
testcase_30 AC 109 ms
12,800 KB
testcase_31 AC 90 ms
12,416 KB
testcase_32 AC 90 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i
f=(0..n).map{[1]*(n+1)}
f[x=n][y=0]=0
gets.chop.chars.map{|c|c<'L'? x+=1:c<'R'? y-=1:c<'U'? y+=1:x-=1;f[x][y]=0}
f.map{|g|puts g.join' '}
0