結果

問題 No.1738 What's in the box?
ユーザー kotatsugame
提出日時 2021-11-12 21:32:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 224 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 64,272 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-25 12:16:12
合計ジャッジ時間 2,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 68 RE * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N,M;
int W[1000];
main()
{
	cin>>N>>M;
	long SW=0;
	for(int i=0;i<N;i++)
	{
		cin>>W[i];
		SW+=W[i];
	}
	for(int i=0;i<N;i++)
	{
		cout<<(W[i]*(long)M/SW)<<(i+1==N?"\n":" ");
	}
}
0