結果

問題 No.805 UMG
ユーザー ktgw0316ktgw0316
提出日時 2019-04-07 22:47:22
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 375 bytes
コンパイル時間 13,237 ms
コンパイル使用メモリ 435,300 KB
実行使用メモリ 57,180 KB
最終ジャッジ日時 2024-11-18 13:42:36
合計ジャッジ時間 23,427 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 303 ms
56,756 KB
testcase_02 AC 305 ms
56,860 KB
testcase_03 RE -
testcase_04 AC 301 ms
56,764 KB
testcase_05 AC 300 ms
56,744 KB
testcase_06 AC 306 ms
56,844 KB
testcase_07 AC 306 ms
56,924 KB
testcase_08 AC 306 ms
56,880 KB
testcase_09 AC 304 ms
56,764 KB
testcase_10 AC 305 ms
56,792 KB
testcase_11 AC 306 ms
56,984 KB
testcase_12 AC 299 ms
56,964 KB
testcase_13 AC 298 ms
56,900 KB
testcase_14 AC 296 ms
56,764 KB
testcase_15 AC 309 ms
56,648 KB
testcase_16 AC 311 ms
56,760 KB
testcase_17 AC 309 ms
56,892 KB
testcase_18 AC 341 ms
56,948 KB
testcase_19 AC 308 ms
56,808 KB
testcase_20 AC 312 ms
56,708 KB
testcase_21 AC 316 ms
56,916 KB
testcase_22 AC 315 ms
56,900 KB
testcase_23 AC 343 ms
57,032 KB
testcase_24 AC 339 ms
57,180 KB
testcase_25 AC 349 ms
57,000 KB
testcase_26 AC 345 ms
57,052 KB
testcase_27 AC 354 ms
57,160 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 s.indexOf('U')..(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