結果

問題 No.800 四平方定理
ユーザー yudedakoyudedako
提出日時 2022-01-26 20:51:07
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,263 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 14,907 ms
コンパイル使用メモリ 269,572 KB
実行使用メモリ 95,168 KB
最終ジャッジ日時 2024-06-06 04:03:33
合計ジャッジ時間 52,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 967 ms
63,072 KB
testcase_01 AC 963 ms
62,988 KB
testcase_02 AC 964 ms
63,636 KB
testcase_03 AC 972 ms
64,068 KB
testcase_04 AC 975 ms
63,604 KB
testcase_05 AC 953 ms
63,564 KB
testcase_06 AC 962 ms
63,428 KB
testcase_07 AC 967 ms
63,420 KB
testcase_08 AC 972 ms
63,056 KB
testcase_09 AC 973 ms
63,268 KB
testcase_10 AC 1,087 ms
79,160 KB
testcase_11 AC 1,118 ms
80,780 KB
testcase_12 AC 1,093 ms
80,720 KB
testcase_13 AC 1,085 ms
79,652 KB
testcase_14 AC 1,092 ms
81,244 KB
testcase_15 AC 1,081 ms
80,892 KB
testcase_16 AC 1,120 ms
81,028 KB
testcase_17 AC 1,098 ms
81,212 KB
testcase_18 AC 1,074 ms
81,076 KB
testcase_19 AC 1,084 ms
81,344 KB
testcase_20 AC 930 ms
63,248 KB
testcase_21 AC 940 ms
62,900 KB
testcase_22 AC 1,124 ms
81,056 KB
testcase_23 AC 1,244 ms
95,108 KB
testcase_24 AC 1,221 ms
94,968 KB
testcase_25 AC 1,236 ms
94,940 KB
testcase_26 AC 940 ms
63,228 KB
testcase_27 AC 955 ms
67,260 KB
testcase_28 AC 1,262 ms
94,884 KB
testcase_29 AC 1,252 ms
94,808 KB
testcase_30 AC 1,263 ms
94,776 KB
testcase_31 AC 1,209 ms
92,696 KB
testcase_32 AC 1,224 ms
95,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn.*
import scala.math.*

@main def main =
  val Array(n, d) = readLine().split(' ').map(_.toInt)
  val factorCount = Array.fill(max(n * n * 2, d) + 1){0}

  for
    w <- 1 to n
    z <- 1 to w
  do
    factorCount(w * w - z * z) += 1

  var result = 0L
  for
    x <- 1 to n
    y <- 1 to n
  do
    result += factorCount(abs(d - x * x - y * y))

  println(result)
0