結果
問題 | No.1318 ABCD quadruplets |
ユーザー | Kude |
提出日時 | 2020-12-15 23:07:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 181 ms / 2,000 ms |
コード長 | 1,862 bytes |
コンパイル時間 | 2,013 ms |
コンパイル使用メモリ | 201,872 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-20 02:25:05 |
合計ジャッジ時間 | 4,803 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 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 | 5 ms
5,376 KB |
testcase_14 | AC | 75 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 97 ms
5,376 KB |
testcase_17 | AC | 9 ms
5,376 KB |
testcase_18 | AC | 68 ms
5,376 KB |
testcase_19 | AC | 33 ms
5,376 KB |
testcase_20 | AC | 6 ms
5,376 KB |
testcase_21 | AC | 15 ms
5,376 KB |
testcase_22 | AC | 10 ms
5,376 KB |
testcase_23 | AC | 180 ms
5,376 KB |
testcase_24 | AC | 162 ms
5,376 KB |
testcase_25 | AC | 44 ms
5,376 KB |
testcase_26 | AC | 25 ms
5,376 KB |
testcase_27 | AC | 125 ms
5,376 KB |
testcase_28 | AC | 49 ms
5,376 KB |
testcase_29 | AC | 62 ms
5,376 KB |
testcase_30 | AC | 180 ms
5,376 KB |
testcase_31 | AC | 46 ms
5,376 KB |
testcase_32 | AC | 181 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n)for (int i = 0; i < (n); ++i) int hist[160001], ans[160001]; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; rep(a, m + 1) { int tot1 = a * a; rep(b, a) { int s2 = a + b; int tot2 = tot1 + s2 * b; if (tot2 > n) break; rep(c, b) { int s3 = s2 + c; int tot3 = tot2 + s3 * c; if (tot3 > n) break; rep(d, c) { int s4 = s3 + d; int tot4 = tot3 + s4 * d; if (tot4 > n) break; hist[tot4] += 24; } } } } const int perm[] = {1, 1, 2, 6, 24}; for(int bit = 1; bit < 8; bit++) { rep(a, m + 1) { for(int b = bit & 1 ? a : 0; b < (bit & 1 ? a + 1 : a); ++b) { int tot2 = a * a + a * b + b * b; if (tot2 > n) break; for(int c = bit & 2 ? b : 0; c < (bit & 2 ? b + 1 : b); ++c) { int tot3 = tot2 + (a + b + c) * c; if (tot3 > n) break; for(int d = bit & 4 ? c : 0; d < (bit & 4 ? c + 1 : c); ++d) { int tot4 = tot3 + (a + b + c + d) * d; if (tot4 > n) break; int dup = 1; int i = 0; for(int j = 0; j < 4; ++j) if ((bit >> j & 1) == 0) { int len = j - i + 1; dup *= perm[len]; i = j + 1; } hist[tot4] += 24 / dup; } } } } } rep(i, n + 1) cout << hist[i] << '\n'; }