結果

問題 No.1623 三角形の制作
ユーザー 箱星箱星
提出日時 2021-07-23 22:21:10
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 1,228 bytes
コンパイル時間 12,706 ms
コンパイル使用メモリ 435,924 KB
実行使用メモリ 97,424 KB
最終ジャッジ日時 2024-07-18 18:07:31
合計ジャッジ時間 26,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
50,064 KB
testcase_01 AC 278 ms
50,300 KB
testcase_02 AC 667 ms
97,036 KB
testcase_03 AC 611 ms
79,864 KB
testcase_04 AC 735 ms
81,996 KB
testcase_05 AC 732 ms
90,288 KB
testcase_06 AC 458 ms
59,500 KB
testcase_07 AC 665 ms
88,384 KB
testcase_08 AC 545 ms
60,192 KB
testcase_09 AC 632 ms
79,472 KB
testcase_10 AC 680 ms
90,120 KB
testcase_11 AC 686 ms
97,424 KB
testcase_12 AC 577 ms
69,804 KB
testcase_13 AC 601 ms
73,520 KB
testcase_14 AC 584 ms
72,316 KB
testcase_15 AC 607 ms
90,264 KB
testcase_16 AC 661 ms
91,124 KB
testcase_17 AC 732 ms
91,392 KB
testcase_18 AC 684 ms
90,452 KB
testcase_19 AC 591 ms
74,128 KB
testcase_20 AC 279 ms
50,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val r = Array(n) { nextInt() }
    val g = Array(n) { nextInt() }
    val b = Array(n) { nextInt() }
    val cnt = LongArray(6005) { 0 }
    for (v in r) {
        cnt[v]++
    }
    for (i in 0 until 6000) {
        cnt[i + 1] += cnt[i]
    }
    var ans = 0L
    val cnt_g = LongArray(3005) { 0 }
    val cnt_b = LongArray(3005) { 0 }
    for (v in g) {
        cnt_g[v]++
    }
    for (v in b) {
        cnt_b[v]++
    }
    for (i in 1 until 3002) {
        for (j in 1 until 3002) {
            ans += cnt[i + j - 1] * cnt_g[i] * cnt_b[j]
            ans -= cnt[max(i, j) - 1] * cnt_g[i] * cnt_b[j]
        }
    }
    println(ans)
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0