結果
問題 | No.794 チーム戦 (2) |
ユーザー | milanis48663220 |
提出日時 | 2020-04-19 01:28:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 984 bytes |
コンパイル時間 | 996 ms |
コンパイル使用メモリ | 85,820 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-04 00:40:36 |
合計ジャッジ時間 | 3,820 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 41 ms
5,248 KB |
testcase_17 | AC | 41 ms
5,248 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 | AC | 19 ms
5,248 KB |
testcase_30 | AC | 19 ms
5,248 KB |
testcase_31 | AC | 19 ms
5,248 KB |
testcase_32 | AC | 19 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> using namespace std; typedef long long ll; int N, K; int A[200000]; int B[200000]; const ll MOD = 1000000007; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; cin >> N >> K; for(int i = 0; i < N; i++) cin >> A[i]; for(int i = 0; i < N; i++) B[i] = A[N-i-1]; sort(A, A+N, greater<int>()); ll ans = 1; for(int i = 0; i < N; i++){ if(A[i]*2 <= K){ int m = N-2*i; for(int i = m; i > 0; i -= 2){ ans *= (i-1); ans %= MOD; } cout << ans << endl; return 0; } auto p = upper_bound(B, B+N, K-A[i]); int m = p-B-i; if(m <= 0){ cout << 0 << endl; return 0; } ans *= m; ans %= MOD; } cout << ans << endl; }