結果

問題 No.1692 Expectations
ユーザー ポールポール
提出日時 2021-10-01 21:30:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 734 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 13,714 ms
コンパイル使用メモリ 435,596 KB
実行使用メモリ 92,936 KB
最終ジャッジ日時 2024-07-19 10:35:31
合計ジャッジ時間 25,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
56,024 KB
testcase_01 AC 348 ms
56,132 KB
testcase_02 AC 386 ms
56,340 KB
testcase_03 AC 381 ms
56,640 KB
testcase_04 AC 369 ms
56,500 KB
testcase_05 AC 382 ms
56,512 KB
testcase_06 AC 380 ms
56,384 KB
testcase_07 AC 354 ms
56,268 KB
testcase_08 AC 375 ms
56,320 KB
testcase_09 AC 359 ms
56,212 KB
testcase_10 AC 626 ms
87,156 KB
testcase_11 AC 620 ms
86,892 KB
testcase_12 AC 349 ms
55,968 KB
testcase_13 AC 347 ms
56,312 KB
testcase_14 AC 564 ms
63,544 KB
testcase_15 AC 690 ms
92,284 KB
testcase_16 AC 557 ms
63,320 KB
testcase_17 AC 662 ms
77,344 KB
testcase_18 AC 589 ms
66,900 KB
testcase_19 AC 734 ms
91,936 KB
testcase_20 AC 652 ms
91,512 KB
testcase_21 AC 662 ms
92,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (n, m) = readLine()!!.split(" ").map(String::toInt)
    val max = readLine()!!.splitToSequence(" ").map(String::toInt).toSet().size
    val min = if (max == 1 && n == m) 1 else 0
    println("$max $min")
}
0