結果
問題 | No.794 チーム戦 (2) |
ユーザー | sinsincoscos |
提出日時 | 2019-02-25 17:42:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 908 bytes |
コンパイル時間 | 852 ms |
コンパイル使用メモリ | 70,644 KB |
実行使用メモリ | 8,292 KB |
最終ジャッジ日時 | 2024-12-26 17:16:07 |
合計ジャッジ時間 | 6,584 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 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 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 256 ms
8,144 KB |
testcase_19 | AC | 253 ms
8,008 KB |
testcase_20 | AC | 238 ms
8,084 KB |
testcase_21 | AC | 244 ms
8,012 KB |
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 | RE | - |
testcase_31 | AC | 197 ms
8,136 KB |
testcase_32 | AC | 201 ms
8,192 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <iostream> #include <algorithm> using namespace std; typedef long long ll; ll N,K,A[200010] = {},inf = 1e9+7; ll func[200010] = {0}; ll inv[200010] = {0}; ll mult(ll n, ll m){ if(m==1) return n%inf; else if(m%2==0){ ll t = mult(n,m/2); return (t*t)%inf; }else{ ll t = mult(n,m-1); return (t*n)%inf; } } void factorial(ll N){ for(ll i=0;i<=N;i++){ if(i==0){ func[i] = 1; inv[i] = 1; } else{ func[i] = (i*func[i-1])%inf; inv[i] = mult(func[i],inf-2); } } } int main(){ cin >> N >> K; factorial(N); for(int i=1;i<=N;i++){ cin >> A[i]; } sort(A+1,A+N+1,greater<ll>()); ll ans = 1; ll r = N+1; for(ll i=1;i<=N;i++){ while(A[i]+A[r-1]<=K && i<r) r--; if(i>=r){ ll num = N-2*(i-1); (ans *= inv[num/2])%=inf; while(num>0){ (ans *= (num*(num-1)/2)%inf)%=inf; num -= 2; } break; } (ans *= N-r+1)%=inf; } cout << ans << endl; }