結果

問題 No.1692 Expectations
ユーザー ポールポール
提出日時 2021-10-01 21:26:28
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 14,363 ms
コンパイル使用メモリ 416,288 KB
実行使用メモリ 76,844 KB
最終ジャッジ日時 2023-09-26 16:25:17
合計ジャッジ時間 25,342 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
53,292 KB
testcase_01 AC 309 ms
53,128 KB
testcase_02 AC 322 ms
53,180 KB
testcase_03 AC 323 ms
53,148 KB
testcase_04 AC 318 ms
53,080 KB
testcase_05 AC 331 ms
53,932 KB
testcase_06 AC 326 ms
53,200 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 320 ms
53,220 KB
testcase_10 WA -
testcase_11 AC 575 ms
68,280 KB
testcase_12 AC 307 ms
52,984 KB
testcase_13 AC 310 ms
53,696 KB
testcase_14 AC 496 ms
57,940 KB
testcase_15 AC 643 ms
70,580 KB
testcase_16 AC 497 ms
57,880 KB
testcase_17 AC 560 ms
64,140 KB
testcase_18 AC 505 ms
57,976 KB
testcase_19 AC 708 ms
76,844 KB
testcase_20 AC 606 ms
70,348 KB
testcase_21 AC 668 ms
76,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    readLine()
    val ans = readLine()!!.split(" ").asSequence().map(String::toInt).toSet().size
    println("$ans 0")
}
0