結果
問題 | No.2171 OR Assignment |
ユーザー | chro_96 |
提出日時 | 2022-12-23 01:17:00 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 958 bytes |
コンパイル時間 | 1,197 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-29 05:51:48 |
合計ジャッジ時間 | 6,919 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 132 ms
5,376 KB |
testcase_16 | AC | 138 ms
5,376 KB |
testcase_17 | AC | 160 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <stdio.h> #include <stdlib.h> int cmp_int_rev (const void *ap, const void *bp) { int a = *(int *)ap; int b = *(int *)bp; if (a < b) { return 1; } if (a > b) { return -1; } return 0; } int main () { int n = 0; int a = 0; int res = 0; long long dp[200001] = {}; long long mod_num = 998244353LL; int prev[30] = {}; res = scanf("%d", &n); dp[0] = 1LL; for (int i = 0; i < n; i++) { int prev_sort[31] = {}; res = scanf("%d", &a); for (int j = 0; j < 30; j++) { if ((a&(1<<j)) > 0) { prev[j] = i+1; } prev_sort[j] = prev[j]; } qsort(prev_sort, 31, sizeof(int), cmp_int_rev); dp[i+1] = dp[i]; for (int j = 0; j < 30; j++) { if (prev_sort[j] > 0 && prev_sort[j] <= i && prev_sort[j] != prev_sort[j+1]) { dp[i+1] += dp[prev_sort[j]]; dp[i+1] %= mod_num; } } } printf("%lld\n", dp[n]); return 0; }