結果
問題 | No.800 四平方定理 |
ユーザー | ttttan |
提出日時 | 2019-03-17 22:44:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 927 bytes |
コンパイル時間 | 1,621 ms |
コンパイル使用メモリ | 171,776 KB |
実行使用メモリ | 59,852 KB |
最終ジャッジ日時 | 2024-07-08 01:02:21 |
合計ジャッジ時間 | 10,703 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:41:14: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=] 41 | printf("%d\n",ans); | ~^ ~~~ | | | | int ll {aka long long int} | %lld main.cpp:6:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | int n,d;scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:7:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | 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; for(ll i=1;i<n;i++){ for(ll j=i+1;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]; } } } ll anss=0; for(ll i=1;i<=n;i++)anss+=mp[i*i+i*i]; ans=ans*2+anss; printf("%d\n",ans); }