結果

問題 No.1699 Unfair RPS
ユーザー GatanityHouseGatanityHouse
提出日時 2021-10-17 00:27:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 14,107 ms
コンパイル使用メモリ 430,484 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2023-10-17 22:18:22
合計ジャッジ時間 19,165 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
54,404 KB
testcase_01 AC 310 ms
54,416 KB
testcase_02 AC 312 ms
54,416 KB
testcase_03 AC 307 ms
54,412 KB
testcase_04 AC 307 ms
54,412 KB
testcase_05 AC 309 ms
54,408 KB
testcase_06 AC 307 ms
54,412 KB
testcase_07 AC 309 ms
54,408 KB
testcase_08 AC 311 ms
54,408 KB
testcase_09 AC 311 ms
54,432 KB
testcase_10 AC 310 ms
54,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (b, c) = readLine()!!.split(" ").map { it.toInt() }
    val result = if (b == c) "Yes" else "No"
    println(result)
}
0