結果

問題 No.1233 割り切れない気持ち
ユーザー yudedakoyudedako
提出日時 2022-01-10 17:10:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,535 ms / 3,153 ms
コード長 765 bytes
コンパイル時間 12,789 ms
コンパイル使用メモリ 431,524 KB
実行使用メモリ 101,284 KB
最終ジャッジ日時 2024-11-14 10:58:51
合計ジャッジ時間 50,848 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 363 ms
60,692 KB
testcase_01 AC 369 ms
60,632 KB
testcase_02 AC 397 ms
60,748 KB
testcase_03 AC 430 ms
60,684 KB
testcase_04 AC 434 ms
62,740 KB
testcase_05 AC 385 ms
60,688 KB
testcase_06 AC 389 ms
60,624 KB
testcase_07 AC 832 ms
71,448 KB
testcase_08 AC 1,013 ms
73,564 KB
testcase_09 AC 1,347 ms
83,988 KB
testcase_10 AC 1,442 ms
84,092 KB
testcase_11 AC 826 ms
69,612 KB
testcase_12 AC 1,484 ms
101,120 KB
testcase_13 AC 1,429 ms
101,232 KB
testcase_14 AC 1,453 ms
101,232 KB
testcase_15 AC 1,535 ms
101,284 KB
testcase_16 AC 1,534 ms
101,196 KB
testcase_17 AC 648 ms
79,504 KB
testcase_18 AC 1,039 ms
100,740 KB
testcase_19 AC 732 ms
100,636 KB
testcase_20 AC 662 ms
79,404 KB
testcase_21 AC 878 ms
86,028 KB
testcase_22 AC 875 ms
85,928 KB
testcase_23 AC 879 ms
86,096 KB
testcase_24 AC 936 ms
85,988 KB
testcase_25 AC 912 ms
85,860 KB
testcase_26 AC 927 ms
85,940 KB
testcase_27 AC 923 ms
86,108 KB
testcase_28 AC 929 ms
86,072 KB
testcase_29 AC 1,029 ms
86,032 KB
testcase_30 AC 985 ms
85,920 KB
testcase_31 AC 954 ms
86,004 KB
testcase_32 AC 928 ms
86,052 KB
testcase_33 AC 891 ms
86,044 KB
testcase_34 AC 933 ms
85,872 KB
testcase_35 AC 919 ms
86,064 KB
testcase_36 AC 899 ms
86,052 KB
testcase_37 AC 341 ms
57,244 KB
testcase_38 AC 671 ms
79,452 KB
testcase_39 AC 936 ms
83,476 KB
testcase_40 AC 937 ms
83,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun List<Int>.lowerBound(target: Int): Int {
    var min = 0
    var max = size
    while (min < max) {
        val mid = (min + max) / 2
        if (this[mid] < target) {
            min = mid + 1
        }else {
            max = mid
        }
    }
    return max
}
const val MAX_VALUE = 200000
fun main() {
    val n = readLine()!!.trim().toInt()
    val num = readLine()!!.trim().split(' ').map(String::toInt).sorted()
    val count = IntArray(MAX_VALUE + 1)
    for (a in num) {
        ++count[a]
    }
    var result = num.fold(0L){acc, v -> acc + v} * n
    for (i in 1 .. MAX_VALUE) {
        val m = i.toLong() * count[i]
        for (j in 1 .. MAX_VALUE / i) {
            result -= m * (n - num.lowerBound(i * j))
        }
    }
    println(result)
}
0