結果

問題 No.1738 What's in the box?
ユーザー monnu
提出日時 2021-11-12 21:57:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 423 bytes
コンパイル時間 3,650 ms
コンパイル使用メモリ 228,520 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-25 18:23:33
合計ジャッジ時間 5,738 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 68 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<pair<int,ll>>>;
#define INF 1000000000
#define MOD 998244353
#define MAX 200000

int main(){
  int N;
  ll M;
  cin>>N>>M;
  vector<ll> W(N);
  ll sum=0;
  for(int i=0;i<N;i++){
    cin>>W[i];
    sum+=W[i];
  }
  for(int i=0;i<N;i++){
    cout<<W[i]*M/sum<<' ';
  }
  cout<<'\n';
}
0