結果

問題 No.1692 Expectations
ユーザー ポールポール
提出日時 2021-10-01 21:26:28
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 11,551 ms
コンパイル使用メモリ 430,984 KB
実行使用メモリ 99,264 KB
最終ジャッジ日時 2024-07-19 10:31:19
合計ジャッジ時間 21,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

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