結果

問題 No.1318 ABCD quadruplets
ユーザー tatyamtatyam
提出日時 2020-07-12 04:09:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 894 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 199,828 KB
実行使用メモリ 16,480 KB
最終ジャッジ日時 2024-10-13 20:00:02
合計ジャッジ時間 11,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
16,480 KB
testcase_01 AC 4 ms
9,720 KB
testcase_02 AC 5 ms
9,556 KB
testcase_03 AC 4 ms
9,728 KB
testcase_04 AC 4 ms
9,780 KB
testcase_05 AC 4 ms
9,600 KB
testcase_06 AC 5 ms
9,776 KB
testcase_07 AC 5 ms
9,600 KB
testcase_08 AC 3 ms
9,728 KB
testcase_09 AC 4 ms
9,688 KB
testcase_10 AC 4 ms
9,696 KB
testcase_11 AC 5 ms
9,728 KB
testcase_12 AC 4 ms
9,708 KB
testcase_13 AC 33 ms
9,708 KB
testcase_14 AC 117 ms
9,656 KB
testcase_15 AC 6 ms
9,652 KB
testcase_16 AC 1,453 ms
9,540 KB
testcase_17 AC 15 ms
9,704 KB
testcase_18 AC 105 ms
9,600 KB
testcase_19 AC 39 ms
9,728 KB
testcase_20 AC 21 ms
9,680 KB
testcase_21 AC 72 ms
9,600 KB
testcase_22 AC 16 ms
9,720 KB
testcase_23 TLE -
testcase_24 AC 698 ms
9,600 KB
testcase_25 AC 55 ms
9,600 KB
testcase_26 AC 32 ms
9,704 KB
testcase_27 AC 236 ms
9,716 KB
testcase_28 AC 63 ms
9,600 KB
testcase_29 AC 79 ms
9,608 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n, m;
    cin >> n >> m;
    int ans[1600001] = {};
    for(int a = 0; a <= m; a++) for(int b = 0; b <= a; b++) for(int c = 0; c <= b; c++) for(int d = 0; d <= c; d++){
        const int k = a * a + a * b + a * c + a * d + b * b + b * c + b * d + c * c + c * d + d * d;
        if(a == b){
            if(b == c){
                if(c == d) ans[k] += 1;
                else ans[k] += 4;
            }
            else{
                if(c == d) ans[k] += 6;
                else ans[k] += 12;
            }
        }
        else{
            if(b == c){
                if(c == d) ans[k] += 4;
                else ans[k] += 12;
            }
            else{
                if(c == d) ans[k] += 12;
                else ans[k] += 24;
            }
        }
    }
    for(int i = 0; i <= n; i++) cout << ans[i] << '\n';
}
0