結果

問題 No.1133 キムワイプイーター
ユーザー MaboyMaboy
提出日時 2021-06-27 13:21:50
言語 Swift
(5.10.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 7,831 ms
コンパイル使用メモリ 137,148 KB
実行使用メモリ 23,672 KB
最終ジャッジ日時 2024-06-25 11:10:42
合計ジャッジ時間 10,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,216 KB
testcase_01 AC 8 ms
9,216 KB
testcase_02 AC 33 ms
13,116 KB
testcase_03 AC 64 ms
18,704 KB
testcase_04 AC 67 ms
19,268 KB
testcase_05 AC 70 ms
19,740 KB
testcase_06 AC 67 ms
19,352 KB
testcase_07 AC 48 ms
15,892 KB
testcase_08 AC 31 ms
12,820 KB
testcase_09 AC 60 ms
18,308 KB
testcase_10 AC 90 ms
23,672 KB
testcase_11 AC 82 ms
22,144 KB
testcase_12 AC 68 ms
19,608 KB
testcase_13 AC 82 ms
22,256 KB
testcase_14 AC 62 ms
18,952 KB
testcase_15 AC 44 ms
15,428 KB
testcase_16 AC 32 ms
13,060 KB
testcase_17 AC 11 ms
9,344 KB
testcase_18 AC 13 ms
9,728 KB
testcase_19 AC 10 ms
9,216 KB
testcase_20 AC 12 ms
9,600 KB
testcase_21 AC 13 ms
9,856 KB
testcase_22 AC 13 ms
9,856 KB
testcase_23 AC 9 ms
9,216 KB
testcase_24 AC 9 ms
9,216 KB
testcase_25 AC 11 ms
9,344 KB
testcase_26 AC 9 ms
9,216 KB
testcase_27 AC 9 ms
9,216 KB
testcase_28 AC 9 ms
9,216 KB
testcase_29 AC 9 ms
9,216 KB
testcase_30 AC 13 ms
9,856 KB
testcase_31 AC 9 ms
9,216 KB
testcase_32 AC 9 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let n = readLine()!.split(separator: " ").map{Int($0)!}
let s = Array(readLine()!)
var m = [[String]]()
for _ in 0...n[0]{
    m += [[String](repeating: "1", count: n[0] + 1)]
}
var (x,y) = (0,0)
m[y][x] = "0"
for i in s{
    switch i {
    case "U":
        y += 1
    case "R":
        x += 1
    case "L":
        x -= 1
    default:
        y -= 1
    }
    m[y][x] = "0"

}

for i in (0...n[0]).sorted(by: >){
    print(m[i].joined(separator: " "))
}
0