結果
問題 | No.800 四平方定理 |
ユーザー | ttttan |
提出日時 | 2019-03-17 22:10:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 807 bytes |
コンパイル時間 | 1,722 ms |
コンパイル使用メモリ | 173,340 KB |
実行使用メモリ | 81,360 KB |
最終ジャッジ日時 | 2024-07-07 23:35:22 |
合計ジャッジ時間 | 20,665 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
10,624 KB |
testcase_01 | AC | 18 ms
5,376 KB |
testcase_02 | AC | 13 ms
5,376 KB |
testcase_03 | AC | 14 ms
5,376 KB |
testcase_04 | AC | 14 ms
5,376 KB |
testcase_05 | AC | 16 ms
5,376 KB |
testcase_06 | AC | 20 ms
5,568 KB |
testcase_07 | AC | 29 ms
6,596 KB |
testcase_08 | AC | 38 ms
7,540 KB |
testcase_09 | AC | 17 ms
5,376 KB |
testcase_10 | AC | 1,302 ms
62,140 KB |
testcase_11 | AC | 1,235 ms
60,944 KB |
testcase_12 | AC | 1,490 ms
69,272 KB |
testcase_13 | AC | 894 ms
48,080 KB |
testcase_14 | AC | 986 ms
52,468 KB |
testcase_15 | AC | 1,483 ms
68,852 KB |
testcase_16 | AC | 1,003 ms
52,596 KB |
testcase_17 | AC | 1,009 ms
52,564 KB |
testcase_18 | AC | 1,832 ms
81,004 KB |
testcase_19 | AC | 1,845 ms
81,172 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1,838 ms
81,360 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:37:14: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=] 37 | 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){ mp[i*i+d-j*j]++; v.push_back(i*i+d-j*j); } } } sort(v.begin(),v.end()); v.erase(unique(v.begin(),v.end()),v.end()); ll r=v.size(); ll cnt[r]; for(ll i=0;i<r;i++){ cnt[i]=mp[v[i]]; } 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); }