結果

問題 No.1219 Mancala Combo
ユーザー kotatsugame
提出日時 2020-10-07 22:36:08
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 63,488 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 04:17:44
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
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,s;
int A[2<<17];
main()
{
	cin>>N;
	for(int i=1;i<=N;i++)cin>>A[i];
	for(int i=N;i;i--)
	{
		if((s+A[i])%i)
		{
			cout<<"No"<<endl;
			return 0;
		}
		s+=(s+A[i])/i;
	}
	cout<<"Yes"<<endl;
}
0