結果

問題 No.2778 Is there Same letter?
ユーザー ImTabooImTaboo
提出日時 2024-12-01 14:11:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 13,349 ms
コンパイル使用メモリ 421,920 KB
実行使用メモリ 49,764 KB
最終ジャッジ日時 2024-12-01 14:11:32
合計ジャッジ時間 18,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
49,448 KB
testcase_01 AC 291 ms
49,572 KB
testcase_02 AC 294 ms
49,452 KB
testcase_03 AC 295 ms
49,764 KB
testcase_04 AC 323 ms
49,472 KB
testcase_05 AC 293 ms
49,708 KB
testcase_06 AC 296 ms
49,636 KB
testcase_07 AC 296 ms
49,520 KB
testcase_08 AC 327 ms
49,732 KB
testcase_09 AC 294 ms
49,456 KB
testcase_10 AC 295 ms
49,444 KB
testcase_11 AC 291 ms
49,580 KB
testcase_12 AC 330 ms
49,540 KB
testcase_13 AC 292 ms
49,572 KB
testcase_14 AC 299 ms
49,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://yukicoder.me/problems/no/2778

fun main() {
    val n: Int = readln().toInt()
    val s = readln()
    for (i in 0..< n) {
        for (j in 0..< n) {
            if (i != j && s[i] == s[j]) {
                println("Yes")
                return

            }

        }
    }
        println("No")
}




0