結果

問題 No.805 UMG
ユーザー MaboyMaboy
提出日時 2021-06-24 19:15:01
言語 Swift
(5.10.0)
結果
TLE  
実行時間 -
コード長 463 bytes
コンパイル時間 9,966 ms
コンパイル使用メモリ 127,852 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-11-18 14:11:53
合計ジャッジ時間 46,186 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
16,164 KB
testcase_01 AC 47 ms
15,908 KB
testcase_02 AC 10 ms
16,164 KB
testcase_03 AC 12 ms
16,160 KB
testcase_04 AC 9 ms
16,168 KB
testcase_05 AC 8 ms
18,176 KB
testcase_06 AC 9 ms
16,164 KB
testcase_07 AC 11 ms
18,176 KB
testcase_08 AC 15 ms
16,164 KB
testcase_09 AC 12 ms
18,176 KB
testcase_10 AC 9 ms
16,036 KB
testcase_11 AC 11 ms
18,048 KB
testcase_12 AC 9 ms
16,036 KB
testcase_13 AC 15 ms
18,048 KB
testcase_14 AC 9 ms
16,032 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,665 ms
18,048 KB
testcase_18 TLE -
testcase_19 AC 1,096 ms
9,344 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

let N = Int(readLine()!)!
let S = String(readLine()!)
let l = (N-3)/2
var c = 0
for i in 0...l{   //文字間隔
    for j in 0...(N-1)-(i+1)*2{
        //print(j,j+(i+1),j+(i+1)*2)
        var t = [S.index(S.startIndex, offsetBy: j)]
        t += [S.index(S.startIndex, offsetBy: j+(i+1))]
        t += [S.index(S.startIndex, offsetBy: j+(i+1)*2)]
        let T = t.map{String(S[$0])}
        if T.joined() == "UMG"{
            c += 1
        }
    }
}
print(c)
0