結果
問題 | No.800 四平方定理 |
ユーザー | ikd |
提出日時 | 2019-03-17 22:06:08 |
言語 | Nim (2.0.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 403 bytes |
コンパイル時間 | 4,546 ms |
コンパイル使用メモリ | 66,260 KB |
実行使用メモリ | 11,548 KB |
最終ジャッジ日時 | 2024-07-01 22:38:58 |
合計ジャッジ時間 | 8,733 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
9,984 KB |
testcase_01 | AC | 81 ms
6,944 KB |
testcase_02 | AC | 50 ms
5,376 KB |
testcase_03 | AC | 58 ms
5,376 KB |
testcase_04 | AC | 46 ms
5,376 KB |
testcase_05 | AC | 57 ms
5,376 KB |
testcase_06 | AC | 106 ms
5,376 KB |
testcase_07 | AC | 61 ms
5,376 KB |
testcase_08 | AC | 85 ms
5,376 KB |
testcase_09 | AC | 86 ms
5,376 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
import strutils, sequtils proc main() = let nd = stdin.readLine.strip.split.map(parseInt) (n, d) = (nd[0], nd[1]) var sq = newSeq[bool](n * n + 1) for i in 1..n: sq[i * i] = true var ans: int64 = 0 for x in 1..n: for y in 1..n: for z in 1..n: let w2 = x * x + y * y + z * z - d if w2 >= 0 and w2 <= n * n and sq[w2]: ans += 1 echo ans main()