結果

問題 No.1318 ABCD quadruplets
ユーザー pes_magicpes_magic
提出日時 2020-12-16 18:06:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 1,701 bytes
コンパイル時間 685 ms
コンパイル使用メモリ 72,552 KB
最終ジャッジ日時 2025-01-17 02:04:25
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int main(){
    int N, M; cin >> N >> M;
    vector<long long> res(N+1, 0);
    for(int a=0;a<=M;a++){
        long long s0 = a*a;
        for(int b=a;b<=M;b++){
            long long s1 = s0 + (a+b)*b;
            if(s1 > N) break;
            for(int c=b;c<=M;c++){
                long long s2 = s1 + (a+b+c)*c;
                if(s2 > N) break;
                for(int d=c;d<=M;d++){
                    long long s3 = s2 + (a+b+c+d)*d;
                    if(s3 > N) break;
                    if(a == b){
                        if(b == c){
                            if(c == d){
                                res[s3]++;
                            } else {
                                res[s3] += 4;
                            }
                        } else {
                            if(c == d){
                                res[s3] += 6;
                            } else {
                                res[s3] += 12;
                            }
                        }
                    } else {
                        if(b == c){
                            if(c == d){
                                res[s3] += 4;
                            } else {
                                res[s3] += 12;
                            }
                        } else {
                            if(c == d){
                                res[s3] += 12;
                            } else {
                                res[s3] += 24;
                            }
                        }
                    }
                }
            }
        }
    }
    for(auto& t : res) cout << t << endl;
}
0