結果

問題 No.800 四平方定理
ユーザー yudedakoyudedako
提出日時 2022-01-26 20:51:07
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 1,247 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 11,929 ms
コンパイル使用メモリ 256,964 KB
実行使用メモリ 94,772 KB
最終ジャッジ日時 2024-12-23 15:15:54
合計ジャッジ時間 43,813 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 842 ms
63,240 KB
testcase_01 AC 842 ms
63,000 KB
testcase_02 AC 859 ms
63,396 KB
testcase_03 AC 861 ms
63,616 KB
testcase_04 AC 845 ms
63,404 KB
testcase_05 AC 852 ms
63,588 KB
testcase_06 AC 860 ms
63,252 KB
testcase_07 AC 839 ms
63,064 KB
testcase_08 AC 818 ms
63,188 KB
testcase_09 AC 846 ms
63,212 KB
testcase_10 AC 928 ms
78,912 KB
testcase_11 AC 921 ms
80,792 KB
testcase_12 AC 923 ms
80,708 KB
testcase_13 AC 946 ms
79,696 KB
testcase_14 AC 948 ms
80,896 KB
testcase_15 AC 926 ms
81,012 KB
testcase_16 AC 956 ms
80,840 KB
testcase_17 AC 947 ms
81,120 KB
testcase_18 AC 937 ms
81,040 KB
testcase_19 AC 947 ms
81,156 KB
testcase_20 AC 807 ms
62,948 KB
testcase_21 AC 815 ms
62,960 KB
testcase_22 AC 926 ms
81,276 KB
testcase_23 AC 1,016 ms
94,648 KB
testcase_24 AC 1,040 ms
94,772 KB
testcase_25 AC 1,024 ms
94,416 KB
testcase_26 AC 815 ms
63,004 KB
testcase_27 AC 822 ms
66,732 KB
testcase_28 AC 1,247 ms
94,568 KB
testcase_29 AC 1,017 ms
94,716 KB
testcase_30 AC 1,024 ms
94,580 KB
testcase_31 AC 996 ms
92,316 KB
testcase_32 AC 1,012 ms
94,500 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