結果

問題 No.1318 ABCD quadruplets
ユーザー umezoumezo
提出日時 2020-12-15 00:43:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 874 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 208,476 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-09-20 01:09:35
合計ジャッジ時間 7,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1,724 ms
9,728 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for (int i=0;i < (int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

int main(){
  int n,m;
  cin>>n>>m;
  
  map<int,int> M;
  for(int a=0;a<=m;a++){
    for(int b=a;b<=m;b++){
      for(int c=b;c<=m;c++){
        for(int d=c;d<=m;d++){
          int sum=a*a+b*b+c*c+d*d+a*b+a*c+a*d+b*c+b*d+c*d;
          if(a<b && b<c && c<d) M[sum]+=24;
          else if(a==b && b<c && c<d) M[sum]+=12;
          else if(a<b && b==c && c<d) M[sum]+=12;
          else if(a<b && b<c && c==d) M[sum]+=12;
          else if(a==b && b==c && c<d) M[sum]+=4;
          else if(a==b && b<c && c==d) M[sum]+=6;
          else if(a<b && b==c && c==d) M[sum]+=4;
          else if(a==b && b==c && c==d) M[sum]+=1;
        }
      }
    }
  }
  
  for(int i=0;i<=n;i++) printf("%d\n",M[i]);
          
  return 0;
}
0