結果

問題 No.1318 ABCD quadruplets
ユーザー 箱星箱星
提出日時 2020-12-21 12:23:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 907 ms / 2,000 ms
コード長 1,656 bytes
コンパイル時間 16,860 ms
コンパイル使用メモリ 443,652 KB
実行使用メモリ 69,856 KB
最終ジャッジ日時 2024-09-21 12:54:50
合計ジャッジ時間 31,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
57,636 KB
testcase_01 AC 312 ms
57,820 KB
testcase_02 AC 311 ms
57,908 KB
testcase_03 AC 309 ms
57,792 KB
testcase_04 AC 314 ms
57,788 KB
testcase_05 AC 307 ms
57,776 KB
testcase_06 AC 311 ms
57,632 KB
testcase_07 AC 313 ms
57,848 KB
testcase_08 AC 308 ms
57,608 KB
testcase_09 AC 309 ms
57,764 KB
testcase_10 AC 310 ms
57,668 KB
testcase_11 AC 310 ms
57,900 KB
testcase_12 AC 307 ms
57,704 KB
testcase_13 AC 403 ms
60,324 KB
testcase_14 AC 611 ms
69,820 KB
testcase_15 AC 400 ms
60,384 KB
testcase_16 AC 680 ms
67,680 KB
testcase_17 AC 455 ms
65,712 KB
testcase_18 AC 600 ms
69,800 KB
testcase_19 AC 512 ms
69,808 KB
testcase_20 AC 397 ms
60,308 KB
testcase_21 AC 439 ms
60,192 KB
testcase_22 AC 454 ms
67,700 KB
testcase_23 AC 894 ms
69,744 KB
testcase_24 AC 839 ms
69,532 KB
testcase_25 AC 534 ms
69,700 KB
testcase_26 AC 483 ms
67,664 KB
testcase_27 AC 729 ms
69,736 KB
testcase_28 AC 550 ms
69,856 KB
testcase_29 AC 579 ms
69,748 KB
testcase_30 AC 899 ms
69,640 KB
testcase_31 AC 539 ms
69,696 KB
testcase_32 AC 907 ms
69,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val m = nextInt()
    val ans = IntArray(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