結果

問題 No.1738 What's in the box?
ユーザー kotatsugamekotatsugame
提出日時 2021-11-12 21:32:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 685 ms
コンパイル使用メモリ 62,956 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 12:19:09
合計ジャッジ時間 2,354 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 70
権限があれば一括ダウンロードができます
コンパイルメッセージ
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<<(SW==0?0:W[i]*(long)M/SW)<<(i+1==N?"\n":" ");
	}
}
0