結果
問題 | No.800 四平方定理 |
ユーザー |
![]() |
提出日時 | 2019-09-28 00:33:44 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 1,091 bytes |
コンパイル時間 | 532 ms |
コンパイル使用メモリ | 70,860 KB |
実行使用メモリ | 41,940 KB |
最終ジャッジ日時 | 2024-09-25 03:35:42 |
合計ジャッジ時間 | 2,592 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’: main.cpp:30:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 30 | scanf("%d%d", &N, &D); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>#include <string>#include <cstring>#include <stdlib.h>#include <math.h>#include <algorithm>#include <vector>#include <set>#include <map>#include <queue>#include <stack>#include <list>#include <iterator>#include <assert.h>#pragma warning(disable:4996)typedef long long ll;#define MIN(a, b) ((a)>(b)? (b): (a))#define MAX(a, b) ((a)<(b)? (b): (a))#define LINF 9223300000000000000#define INF 2140000000const long long MOD = 1000000007;using namespace std;int main(int argc, char* argv[]){int N,D;scanf("%d%d", &N, &D);vector<int> a(5000000), b(5000000);int i,j;for(i=1; i<=N; i++) {for(j=1; j<=N; j++) {int tmp=i*i+j*j;if(tmp<5000000) {a[tmp]++;}}}for(i=1; i<=N; i++) {for(j=1; j<=N; j++) {int tmp=i*i-j*j+D;if(tmp>=0) {b[tmp]++;}}}ll sum=0;for(i=1; i<5000000; i++) {sum += (ll)a[i]*b[i];}printf("%lld\n", sum);return 0;}