結果

問題 No.1318 ABCD quadruplets
ユーザー tatyamtatyam
提出日時 2020-12-14 23:55:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 1,059 bytes
コンパイル時間 8,070 ms
コンパイル使用メモリ 329,664 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-09-20 00:58:13
合計ジャッジ時間 11,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,972 KB
testcase_01 AC 4 ms
9,960 KB
testcase_02 AC 4 ms
9,856 KB
testcase_03 AC 4 ms
9,856 KB
testcase_04 AC 5 ms
9,856 KB
testcase_05 AC 4 ms
9,856 KB
testcase_06 AC 4 ms
9,900 KB
testcase_07 AC 4 ms
9,984 KB
testcase_08 AC 4 ms
9,984 KB
testcase_09 AC 4 ms
9,856 KB
testcase_10 AC 4 ms
9,984 KB
testcase_11 AC 4 ms
9,856 KB
testcase_12 AC 3 ms
9,844 KB
testcase_13 AC 8 ms
9,904 KB
testcase_14 AC 83 ms
10,112 KB
testcase_15 AC 5 ms
9,984 KB
testcase_16 AC 111 ms
9,864 KB
testcase_17 AC 12 ms
9,892 KB
testcase_18 AC 76 ms
9,948 KB
testcase_19 AC 34 ms
9,856 KB
testcase_20 AC 7 ms
9,828 KB
testcase_21 AC 15 ms
9,856 KB
testcase_22 AC 14 ms
9,984 KB
testcase_23 AC 215 ms
10,112 KB
testcase_24 AC 195 ms
9,856 KB
testcase_25 AC 47 ms
9,844 KB
testcase_26 AC 28 ms
9,820 KB
testcase_27 AC 143 ms
9,820 KB
testcase_28 AC 56 ms
9,856 KB
testcase_29 AC 65 ms
9,968 KB
testcase_30 AC 218 ms
9,872 KB
testcase_31 AC 50 ms
9,984 KB
testcase_32 AC 218 ms
9,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    registerValidation();
    int n, m;
    n = inf.readInt(1, 160000);
    inf.readSpace();
    m = inf.readInt(1, (int)sqrt(n));
    inf.readEoln();
    inf.readEof();
    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 + b * (a + b) + c * (a + b + c) + d * (a + b + c + d);
        if(k > n) break;
        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