結果

問題 No.669 対決!!! 飲み比べ
ユーザー ryoissyryoissy
提出日時 2018-03-23 22:32:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 1,389 ms
コンパイル使用メモリ 157,680 KB
実行使用メモリ 9,164 KB
最終ジャッジ日時 2024-06-25 02:02:09
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,904 KB
testcase_01 AC 6 ms
8,488 KB
testcase_02 AC 6 ms
8,480 KB
testcase_03 AC 6 ms
9,164 KB
testcase_04 AC 7 ms
8,408 KB
testcase_05 AC 6 ms
8,924 KB
testcase_06 AC 7 ms
8,772 KB
testcase_07 AC 6 ms
8,496 KB
testcase_08 AC 6 ms
7,724 KB
testcase_09 AC 6 ms
7,812 KB
testcase_10 AC 7 ms
8,432 KB
testcase_11 AC 6 ms
7,976 KB
testcase_12 AC 6 ms
7,704 KB
testcase_13 AC 7 ms
7,504 KB
testcase_14 AC 6 ms
8,032 KB
testcase_15 AC 7 ms
8,424 KB
testcase_16 AC 6 ms
8,620 KB
testcase_17 AC 6 ms
8,584 KB
testcase_18 AC 6 ms
7,720 KB
testcase_19 AC 7 ms
8,092 KB
testcase_20 AC 6 ms
8,392 KB
testcase_21 AC 6 ms
8,304 KB
testcase_22 AC 6 ms
8,480 KB
testcase_23 AC 7 ms
7,636 KB
testcase_24 AC 7 ms
7,368 KB
testcase_25 AC 6 ms
8,076 KB
testcase_26 AC 7 ms
7,244 KB
testcase_27 AC 6 ms
8,052 KB
testcase_28 AC 6 ms
7,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:13:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         scanf("%d%d",&n,&k);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:15:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |                 scanf("%d",&a[i]);
      |                 ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;

int n,k;
int a[1000001];
int dp[1000001];
int cnt[1001];

int main(void){
	scanf("%d%d",&n,&k);
	for(int i=0;i<n;i++){
		scanf("%d",&a[i]);
	}
	for(int i=1;i<=1000000;i++){
		dp[i]=i%(k+1);
	}
	int bi=0;
	for(int i=0;i<n;i++){
		bi^=dp[a[i]];
	}
	printf("%s\n",bi!=0?"YES":"NO");
	return 0;
}
0