結果
問題 | No.1219 Mancala Combo |
ユーザー |
|
提出日時 | 2020-10-07 22:33:37 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 60 ms / 2,000 ms |
コード長 | 311 bytes |
コンパイル時間 | 615 ms |
コンパイル使用メモリ | 64,260 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 04:17:41 |
合計ジャッジ時間 | 2,605 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 5 | main() | ^~~~
ソースコード
#include<iostream>using namespace std;int N;int A[2<<17];main(){cin>>N;for(int i=1;i<=N;i++){cin>>A[i];if(A[i]>i){cout<<"No"<<endl;return 0;}}long s=0;for(int i=N;i;i--){if((s+A[i])%i){cout<<"No"<<endl;return 0;}s+=(s+A[i])/i;}cout<<"Yes"<<endl;}