結果

問題 No.805 UMG
ユーザー ktgw0316ktgw0316
提出日時 2019-04-07 22:49:46
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 11,242 ms
コンパイル使用メモリ 433,972 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-11-18 13:43:35
合計ジャッジ時間 20,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
54,172 KB
testcase_01 AC 294 ms
54,276 KB
testcase_02 AC 284 ms
54,160 KB
testcase_03 AC 288 ms
54,256 KB
testcase_04 AC 288 ms
54,200 KB
testcase_05 AC 285 ms
54,144 KB
testcase_06 AC 293 ms
54,192 KB
testcase_07 AC 291 ms
54,228 KB
testcase_08 AC 285 ms
54,204 KB
testcase_09 AC 293 ms
54,300 KB
testcase_10 AC 287 ms
54,328 KB
testcase_11 AC 281 ms
54,120 KB
testcase_12 AC 287 ms
54,144 KB
testcase_13 AC 287 ms
54,416 KB
testcase_14 AC 280 ms
54,216 KB
testcase_15 AC 301 ms
54,472 KB
testcase_16 AC 296 ms
54,320 KB
testcase_17 AC 299 ms
54,328 KB
testcase_18 AC 309 ms
54,208 KB
testcase_19 AC 300 ms
54,320 KB
testcase_20 AC 297 ms
54,216 KB
testcase_21 AC 295 ms
54,224 KB
testcase_22 AC 296 ms
54,296 KB
testcase_23 AC 337 ms
54,532 KB
testcase_24 AC 328 ms
54,436 KB
testcase_25 AC 336 ms
54,468 KB
testcase_26 AC 336 ms
54,488 KB
testcase_27 AC 346 ms
54,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val s = readLine()!!
    
    var c = 0
    for (i in 0..(n - 3)) {
        if (!s[i].equals('U')) continue
        for (d in 1..((n - 1 - i) / 2)) {
            val j = i + d
            val k = j + d
            if (s[j].equals('M') && s[k].equals('G')) c++
        }
    }
    println(c)
}
0