結果
問題 | No.800 四平方定理 |
ユーザー | hazohel |
提出日時 | 2019-03-20 14:14:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 413 ms |
コンパイル使用メモリ | 54,392 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-09-19 00:07:59 |
合計ジャッジ時間 | 4,254 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,296 KB |
testcase_01 | AC | 5 ms
7,372 KB |
testcase_02 | AC | 5 ms
7,372 KB |
testcase_03 | AC | 4 ms
7,372 KB |
testcase_04 | AC | 5 ms
7,248 KB |
testcase_05 | AC | 6 ms
7,424 KB |
testcase_06 | AC | 4 ms
7,244 KB |
testcase_07 | AC | 4 ms
7,240 KB |
testcase_08 | AC | 5 ms
7,244 KB |
testcase_09 | AC | 5 ms
7,248 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 4 ms
7,248 KB |
testcase_21 | AC | 4 ms
7,296 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 4 ms
7,240 KB |
testcase_27 | AC | 5 ms
7,296 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
ソースコード
#include <iostream> using namespace std; #define INF 500000 int N, D; int LEFT[INF]; int RIGHT[INF]; int main(){ cin >> N >> D; for(int i = 0; i < INF; ++i){ LEFT[i] = 0; RIGHT[i] = 0; } for(int x = 1;x <= N; ++x){ for(int y = 1; y <= N; ++y){ LEFT[x*x+y*y]++; } } for(int z = 1;z <= N; ++z){ for(int w = 1; w <= N; ++w){ if(w*w-z*z +D >0){ RIGHT[w*w - z*z + D]++; } } } int ans = 0; for(int i = 0; i < INF; ++i){ ans += LEFT[i] * RIGHT[i]; } cout << ans << endl; }