結果
問題 | No.800 四平方定理 |
ユーザー | ttttan |
提出日時 | 2019-03-17 23:17:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 924 bytes |
コンパイル時間 | 1,454 ms |
コンパイル使用メモリ | 169,292 KB |
実行使用メモリ | 59,720 KB |
最終ジャッジ日時 | 2024-07-08 02:26:18 |
合計ジャッジ時間 | 10,456 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
6,812 KB |
testcase_01 | AC | 9 ms
6,940 KB |
testcase_02 | AC | 6 ms
6,940 KB |
testcase_03 | AC | 7 ms
6,940 KB |
testcase_04 | AC | 7 ms
6,940 KB |
testcase_05 | AC | 7 ms
6,944 KB |
testcase_06 | AC | 10 ms
6,940 KB |
testcase_07 | AC | 10 ms
6,940 KB |
testcase_08 | AC | 11 ms
6,944 KB |
testcase_09 | AC | 8 ms
6,940 KB |
testcase_10 | AC | 284 ms
31,576 KB |
testcase_11 | AC | 285 ms
31,396 KB |
testcase_12 | AC | 316 ms
35,924 KB |
testcase_13 | AC | 234 ms
23,696 KB |
testcase_14 | AC | 250 ms
25,036 KB |
testcase_15 | AC | 316 ms
34,380 KB |
testcase_16 | AC | 256 ms
25,548 KB |
testcase_17 | AC | 253 ms
25,420 KB |
testcase_18 | AC | 361 ms
39,752 KB |
testcase_19 | AC | 357 ms
40,136 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 358 ms
40,144 KB |
testcase_23 | AC | 614 ms
59,688 KB |
testcase_24 | AC | 474 ms
42,448 KB |
testcase_25 | AC | 612 ms
59,720 KB |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 470 ms
42,316 KB |
testcase_29 | AC | 549 ms
52,744 KB |
testcase_30 | AC | 474 ms
42,188 KB |
testcase_31 | AC | 429 ms
39,756 KB |
testcase_32 | AC | 503 ms
45,644 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:42:14: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=] 42 | printf("%d\n",ans); | ~^ ~~~ | | | | int ll {aka long long int} | %lld main.cpp:5:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | int n,d;scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:6:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d",&d); | ~~~~~^~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; int main(){ int n,d;scanf("%d",&n); scanf("%d",&d); map<ll,ll> mp; vector<ll> v; for(ll i=1;i<=n;i++){ for(ll j=1;j<=n;j++){ if(i*i+d-j*j>0){ v.push_back(i*i+d-j*j); } } } sort(v.begin(),v.end()); vector<ll> vv=v; vv.erase(unique(vv.begin(),vv.end()),vv.end()); ll r=vv.size(); ll cnt[r];fill(cnt,cnt+r,0); ll now=0; for(ll i=0;i<v.size()-1;i++){ cnt[now]++; if(v[i]!=v[i+1])now++; } cnt[now]++; v.erase(unique(v.begin(),v.end()),v.end()); ll ans=0; ll anss=0; for(ll i=1;i<=n;i++){ for(ll j=i;j<=n;j++){ ll y=lower_bound(v.begin(),v.end(),i*i+j*j)-v.begin(); if(v[y]==i*i+j*j){ ans+=cnt[y]; if(i==j)anss+=cnt[y]; } } } ans=ans*2-anss; printf("%d\n",ans); }