結果

問題 No.1318 ABCD quadruplets
ユーザー tatyamtatyam
提出日時 2020-07-12 03:54:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 539 bytes
コンパイル時間 2,968 ms
コンパイル使用メモリ 218,564 KB
実行使用メモリ 9,996 KB
最終ジャッジ日時 2024-10-13 19:59:46
合計ジャッジ時間 21,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,992 KB
testcase_01 AC 4 ms
9,792 KB
testcase_02 AC 4 ms
9,868 KB
testcase_03 AC 4 ms
9,676 KB
testcase_04 AC 4 ms
9,928 KB
testcase_05 AC 4 ms
9,700 KB
testcase_06 AC 4 ms
9,912 KB
testcase_07 AC 4 ms
9,752 KB
testcase_08 AC 4 ms
9,832 KB
testcase_09 AC 4 ms
9,780 KB
testcase_10 AC 4 ms
9,800 KB
testcase_11 AC 3 ms
9,796 KB
testcase_12 AC 4 ms
9,836 KB
testcase_13 AC 27 ms
9,856 KB
testcase_14 AC 901 ms
9,996 KB
testcase_15 AC 9 ms
9,812 KB
testcase_16 AC 1,213 ms
9,916 KB
testcase_17 AC 23 ms
9,976 KB
testcase_18 AC 774 ms
9,908 KB
testcase_19 AC 244 ms
9,720 KB
testcase_20 AC 24 ms
9,788 KB
testcase_21 AC 103 ms
9,920 KB
testcase_22 AC 19 ms
9,844 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 391 ms
9,780 KB
testcase_26 AC 161 ms
9,724 KB
testcase_27 AC 1,669 ms
9,968 KB
testcase_28 AC 494 ms
9,820 KB
testcase_29 AC 646 ms
9,808 KB
testcase_30 TLE -
testcase_31 AC 434 ms
9,824 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
using uint = uint32_t;

int main(){
    uint n, m;
    cin >> n >> m;
    uint ans[1600001] = {};
    for(uint a = 0; a <= m; a++) for(uint b = 0; b <= m; b++) for(uint c = 0; c <= m; c++){
        uint x = a * a + a * b + a * c + b * b + b * c + c * c;
        uint y = a + b + c;
        for(uint d = 0, k = x; d <= m && k <= n; d++, k += y + d + d - 1) ans[k]++;
    }
    for(uint i = 0; i <= n; i++) printf("%u\n", ans[i]);
}
0