結果

問題 No.1318 ABCD quadruplets
ユーザー 箱星箱星
提出日時 2020-12-21 12:23:05
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,653 bytes
コンパイル時間 13,469 ms
コンパイル使用メモリ 444,796 KB
実行使用メモリ 95,148 KB
最終ジャッジ日時 2024-09-21 12:54:02
合計ジャッジ時間 39,914 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
57,804 KB
testcase_01 AC 325 ms
58,232 KB
testcase_02 AC 317 ms
54,300 KB
testcase_03 AC 320 ms
54,404 KB
testcase_04 AC 324 ms
54,320 KB
testcase_05 AC 322 ms
54,224 KB
testcase_06 AC 323 ms
54,248 KB
testcase_07 AC 326 ms
54,344 KB
testcase_08 AC 321 ms
54,364 KB
testcase_09 AC 323 ms
54,320 KB
testcase_10 AC 322 ms
54,224 KB
testcase_11 AC 317 ms
54,208 KB
testcase_12 AC 317 ms
54,132 KB
testcase_13 AC 473 ms
71,100 KB
testcase_14 AC 1,249 ms
89,104 KB
testcase_15 AC 479 ms
59,036 KB
testcase_16 AC 1,433 ms
92,960 KB
testcase_17 AC 497 ms
67,276 KB
testcase_18 AC 1,160 ms
89,224 KB
testcase_19 AC 727 ms
89,172 KB
testcase_20 AC 471 ms
69,576 KB
testcase_21 AC 560 ms
86,324 KB
testcase_22 AC 490 ms
63,180 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 832 ms
90,748 KB
testcase_26 AC 619 ms
90,540 KB
testcase_27 AC 1,871 ms
95,044 KB
testcase_28 AC 910 ms
92,920 KB
testcase_29 AC 1,087 ms
95,040 KB
testcase_30 TLE -
testcase_31 AC 866 ms
90,832 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val m = nextInt()
    val ans = Array(n + 1) { 0 }
    for (a in 0..m) {
        for (b in 0..a) {
            for (c in 0..b) {
                for (d in 0..c) {
                    val k = a * a + a * b + a * c + a * d + b * b + b * c + b * d + c * c + c * d + d * d
                    if (k > n) break
                    if (a == b) {
                        if (b == c) {
                            if (c == d) ans[k] += 1
                            else ans[k] += 4
                        } else {
                            if (c == d) ans[k] += 6
                            else ans[k] += 12
                        }
                    } else {
                        if (b == c) {
                            if (c == d) ans[k] += 4
                            else ans[k] += 12
                        } else {
                            if (c == d) ans[k] += 12
                            else ans[k] += 24
                        }
                    }
                }
            }
        }
    }
    println(ans.joinToString("\n"))
}

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