結果
| 問題 | No.3698 くじ引きでチーム分け |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-09 23:11:28 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 103 ms / 2,000 ms |
| + 760µs | |
| コード長 | 1,904 bytes |
| 記録 | |
| コンパイル時間 | 3,393 ms |
| コンパイル使用メモリ | 178,276 KB |
| 実行使用メモリ | 9,996 KB |
| 最終ジャッジ日時 | 2026-09-09 23:11:35 |
| 合計ジャッジ時間 | 6,953 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 14 |
ソースコード
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
using ll = long long;
const ll MOD=998244353;
struct mint{
ll val;
mint(ll val_=0):val(val_%MOD){
if(val<0) val+=MOD;
}
mint operator-()const{
return mint(-val);
}
mint& operator+=(const mint& other){
val+=other.val;
if(val>=MOD) val-=MOD;
return *this;
}
mint& operator-=(const mint& other){
val-=other.val;
if(val<0) val+=MOD;
return *this;
}
mint& operator*=(const mint& other){
val*=other.val, val%=MOD;
return *this;
}
mint pow(ll n) const{
mint ans(1);
mint mul(*this);
while(n){
if(n&1) ans*=mul;
mul*=mul;
n/=2;
}
return ans;
}
mint inv() const{
return pow(MOD-2);
}
mint& operator/=(const mint& other){
return *this*=other.inv();
}
friend bool operator==(const mint& lhs, const mint& rhs){
return lhs.val == rhs.val;
}
friend bool operator!=(const mint& lhs, const mint& rhs){
return lhs.val != rhs.val;
}
friend mint operator+(mint lhs, const mint& rhs) {
lhs+=rhs;
return lhs;
}
friend mint operator-(mint lhs, const mint& rhs) {
lhs-=rhs;
return lhs;
}
friend mint operator*(mint lhs, const mint& rhs) {
lhs*=rhs;
return lhs;
}
friend mint operator/(mint lhs, const mint& rhs) {
lhs/=rhs;
return lhs;
}
friend istream& operator>>(istream& is, mint& m) {
ll x;
is >> x;
m=mint(x);
return is;
}
friend ostream& operator<<(ostream& os, const mint& m) {
return os << m.val;
}
};
int main(void){
int n, k; cin >> n >> k;
vector<mint> a(n), b(n);
mint sa=0, sb=0;
for(auto&x:a) cin >> x, sa+=x;
for(auto&x:b) cin >> x, sb+=x;
mint ans=0, p=mint(n/k-1)/(n-1);
for(int i=0; i<n; i++){
mint add=(a[i]*(sb-b[i])+b[i]*(sa-a[i]))*p;
ans+=add;
}
cout << ans/2 << endl;
return 0;
}