結果

問題 No.1468 Colourful Pastel
ユーザー face4face4
提出日時 2021-04-10 12:15:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 648 ms / 1,000 ms
コード長 341 bytes
コンパイル時間 13,668 ms
コンパイル使用メモリ 426,260 KB
実行使用メモリ 77,012 KB
最終ジャッジ日時 2024-07-19 18:03:42
合計ジャッジ時間 21,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 645 ms
75,344 KB
testcase_01 AC 642 ms
75,276 KB
testcase_02 AC 294 ms
54,904 KB
testcase_03 AC 295 ms
54,672 KB
testcase_04 AC 300 ms
54,804 KB
testcase_05 AC 291 ms
54,772 KB
testcase_06 AC 294 ms
54,900 KB
testcase_07 AC 315 ms
54,896 KB
testcase_08 AC 302 ms
54,672 KB
testcase_09 AC 290 ms
54,768 KB
testcase_10 AC 300 ms
54,704 KB
testcase_11 AC 296 ms
54,832 KB
testcase_12 AC 292 ms
54,680 KB
testcase_13 AC 301 ms
55,084 KB
testcase_14 AC 284 ms
54,632 KB
testcase_15 AC 299 ms
54,868 KB
testcase_16 AC 288 ms
54,560 KB
testcase_17 AC 286 ms
54,776 KB
testcase_18 AC 292 ms
54,820 KB
testcase_19 AC 289 ms
54,860 KB
testcase_20 AC 303 ms
54,640 KB
testcase_21 AC 292 ms
54,856 KB
testcase_22 AC 283 ms
54,848 KB
testcase_23 AC 294 ms
54,652 KB
testcase_24 AC 284 ms
54,800 KB
testcase_25 AC 279 ms
54,800 KB
testcase_26 AC 290 ms
54,744 KB
testcase_27 AC 648 ms
77,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main() {
    val colors = listOf("Red", "Orange", "Yellow", "Green", "Cyan", "Blue", "Violet")
    val n = readLine()!!.toInt()
    val a = readLine()!!.split(" ")
    val b = readLine()!!.split(" ")
    for (color in colors) {
        if (a.count { it == color } != b.count { it == color }){
            println(color)
        }
    }
}
0