結果

問題 No.669 対決!!! 飲み比べ
ユーザー e6i24v_kyoproe6i24v_kyopro
提出日時 2021-05-06 00:49:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 879 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 169,940 KB
実行使用メモリ 7,288 KB
最終ジャッジ日時 2024-09-13 17:19:27
合計ジャッジ時間 9,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
7,168 KB
testcase_01 AC 31 ms
7,168 KB
testcase_02 AC 681 ms
7,144 KB
testcase_03 AC 75 ms
7,144 KB
testcase_04 AC 684 ms
7,256 KB
testcase_05 AC 613 ms
7,064 KB
testcase_06 AC 484 ms
7,236 KB
testcase_07 AC 40 ms
7,168 KB
testcase_08 AC 293 ms
7,168 KB
testcase_09 AC 31 ms
7,100 KB
testcase_10 AC 135 ms
7,096 KB
testcase_11 AC 388 ms
7,096 KB
testcase_12 AC 268 ms
7,168 KB
testcase_13 AC 70 ms
7,112 KB
testcase_14 AC 34 ms
7,084 KB
testcase_15 AC 648 ms
7,168 KB
testcase_16 AC 338 ms
7,140 KB
testcase_17 AC 203 ms
7,076 KB
testcase_18 AC 32 ms
7,168 KB
testcase_19 AC 551 ms
7,216 KB
testcase_20 AC 201 ms
7,100 KB
testcase_21 AC 137 ms
7,112 KB
testcase_22 AC 80 ms
7,168 KB
testcase_23 AC 268 ms
7,168 KB
testcase_24 AC 40 ms
7,076 KB
testcase_25 AC 39 ms
7,288 KB
testcase_26 AC 31 ms
7,168 KB
testcase_27 AC 35 ms
7,076 KB
testcase_28 AC 60 ms
7,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

vector<int> sake(1000020);
int K;

void init(){
    for(int i=0;i<1000020;i++){
        vector<int> tmp(K+1);
        if(i<=K){
            sake[i]=i;
        }else{
            for(int k=1;k<=K;k++){
                tmp[sake[i-k]]=1;
            }
            for(int k=0;k<=K;k++){
                if(tmp[k]==0){
                    sake[i]=k;
                    break;
                }
            }
        }
        }
        
}


   
  

int main(){
    int N;
    cin>>N>>K;
    
    init();
    
    vector<int> A(N);
    
    int flag=0;
    
    for(int i=0;i<N;i++){
        cin>>A[i];
            flag^=sake[A[i]];
    
    }
    
    if(flag){
        cout<<"YES"<<endl;
    }else{
        cout<<"NO"<<endl;
    }
    /*
    for(int i=0;i<100;i++){
        cout<<sake[i]<<endl;
    }
    */
}
0