結果

問題 No.1623 三角形の制作
ユーザー 箱星箱星
提出日時 2021-07-23 21:51:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,638 ms / 2,000 ms
コード長 1,267 bytes
コンパイル時間 12,623 ms
コンパイル使用メモリ 454,720 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-07-18 17:32:02
合計ジャッジ時間 32,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
53,336 KB
testcase_01 AC 315 ms
53,452 KB
testcase_02 AC 1,280 ms
92,052 KB
testcase_03 AC 1,191 ms
90,852 KB
testcase_04 AC 1,134 ms
91,004 KB
testcase_05 AC 1,638 ms
92,364 KB
testcase_06 AC 578 ms
63,140 KB
testcase_07 AC 1,121 ms
91,560 KB
testcase_08 AC 644 ms
64,444 KB
testcase_09 AC 1,138 ms
90,072 KB
testcase_10 AC 1,528 ms
91,664 KB
testcase_11 AC 1,305 ms
92,544 KB
testcase_12 AC 642 ms
72,952 KB
testcase_13 AC 687 ms
76,752 KB
testcase_14 AC 633 ms
75,060 KB
testcase_15 AC 715 ms
91,980 KB
testcase_16 AC 737 ms
91,728 KB
testcase_17 AC 726 ms
91,360 KB
testcase_18 AC 745 ms
91,568 KB
testcase_19 AC 650 ms
77,228 KB
testcase_20 AC 309 ms
53,336 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() }
    r.sort()
    g.sort()
    b.sort()
    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