結果

問題 No.406 鴨等間隔の法則
ユーザー komkomhkomkomh
提出日時 2019-06-09 10:27:35
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 799 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 11,083 ms
コンパイル使用メモリ 436,620 KB
実行使用メモリ 82,204 KB
最終ジャッジ日時 2024-07-07 12:41:05
合計ジャッジ時間 29,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 474 ms
65,772 KB
testcase_01 AC 310 ms
60,608 KB
testcase_02 AC 307 ms
60,668 KB
testcase_03 AC 296 ms
57,200 KB
testcase_04 AC 520 ms
73,924 KB
testcase_05 AC 478 ms
65,904 KB
testcase_06 AC 479 ms
65,896 KB
testcase_07 AC 482 ms
65,876 KB
testcase_08 AC 514 ms
74,064 KB
testcase_09 AC 531 ms
76,168 KB
testcase_10 AC 487 ms
65,744 KB
testcase_11 AC 508 ms
74,128 KB
testcase_12 AC 492 ms
67,836 KB
testcase_13 AC 485 ms
67,920 KB
testcase_14 AC 683 ms
77,816 KB
testcase_15 AC 392 ms
59,740 KB
testcase_16 AC 444 ms
63,212 KB
testcase_17 AC 370 ms
62,844 KB
testcase_18 AC 432 ms
63,184 KB
testcase_19 AC 450 ms
63,284 KB
testcase_20 AC 504 ms
65,052 KB
testcase_21 AC 497 ms
65,084 KB
testcase_22 AC 534 ms
67,052 KB
testcase_23 AC 514 ms
67,876 KB
testcase_24 AC 686 ms
77,808 KB
testcase_25 AC 541 ms
76,112 KB
testcase_26 AC 799 ms
82,036 KB
testcase_27 AC 526 ms
72,088 KB
testcase_28 AC 517 ms
76,112 KB
testcase_29 AC 781 ms
82,204 KB
testcase_30 AC 790 ms
80,048 KB
testcase_31 AC 540 ms
74,132 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:9: warning: variable 'N' is never used
    val N = readLine()!!.toInt()
        ^

ソースコード

diff #

package yukicoder

fun main() {
    val N = readLine()!!.toInt()
    val X = readLine()!!.split(" ").map(String::toInt)

    if (X.size != X.toSet().size) {
        println("NO")
        return
    }

    val hatos = X.sorted()
    val diff = hatos[1] - hatos[0]
    for (index in 1 until hatos.size) {
        if (hatos[index] - hatos[index -1] != diff) {
            println("NO")
            return
        }
    }
    println("YES")
}
0