結果

問題 No.1219 Mancala Combo
ユーザー kkkkkk
提出日時 2024-12-09 22:56:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 885 bytes
コンパイル時間 820 ms
コンパイル使用メモリ 81,392 KB
実行使用メモリ 11,684 KB
最終ジャッジ日時 2024-12-09 22:57:15
合計ジャッジ時間 23,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 1 ms
9,728 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
9,600 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
9,472 KB
testcase_06 AC 1 ms
10,496 KB
testcase_07 AC 2 ms
9,984 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
9,472 KB
testcase_10 AC 2 ms
10,496 KB
testcase_11 AC 2 ms
9,600 KB
testcase_12 AC 1 ms
10,496 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 36 ms
5,248 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 WA -
testcase_21 AC 27 ms
5,248 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 WA -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <queue>
#include <math.h>
#include <map>
#include <iostream>
#include <algorithm>
using namespace std;

typedef long long ll;

#define REP(i, S, E) for(int i=(S); i<(E); i++)
#define FOR(i, S, E) for(int i=(S); i<=(E); i++)


void make(int* A, int N, int S){
    
    FOR(i, 1, N){ A[i] = 0; }
    
    FOR(i, 1, S){
        A[1] += 1;
        int k = 1;
        while (A[k] > k){
            if (k > N){ return; }
            A[k + 1] += (k + 1);
            A[k] -= (k + 1);
            k++;
        }
        
    }
    
    return;
}



int main() {
    int N, S = 0;
    cin >> N;
    int A[N+1], B[N+1];
    
    FOR(i, 1, N){ 
        cin >> A[i];
        S += A[i];
    }
    
    make(B, N, S);
    
    FOR(i, 1, N){ 
        if (A[i] != B[i]){
            cout << "No";
            return 0;
        }
    }
    
    cout << "Yes";
    return 0;
}
0