結果

問題 No.938 賢人を探せ
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-03 23:15:12
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 15,720 ms
コンパイル使用メモリ 438,248 KB
実行使用メモリ 60,900 KB
最終ジャッジ日時 2024-11-27 22:59:41
合計ジャッジ時間 24,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 648 ms
60,900 KB
testcase_01 WA -
testcase_02 AC 289 ms
50,760 KB
testcase_03 WA -
testcase_04 AC 313 ms
50,776 KB
testcase_05 AC 290 ms
50,852 KB
testcase_06 AC 288 ms
50,736 KB
testcase_07 AC 289 ms
50,716 KB
testcase_08 AC 459 ms
58,008 KB
testcase_09 AC 492 ms
58,356 KB
testcase_10 AC 285 ms
50,824 KB
testcase_11 AC 468 ms
58,976 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 611 ms
60,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val i = readLine()!!.toInt()
    val cheater = LinkedHashMap<String, String>(i)
    repeat(i) {
        val (c, d) = readLine()!!.split(" ")
        cheater[c] = d
    }
    
    cheater.values.forEach { 
        // 被害者
        if (it !in cheater.keys) {
            println(it)
        }
    }
}
0