結果

問題 No.669 対決!!! 飲み比べ
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-08 15:42:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 66,992 KB
最終ジャッジ日時 2024-11-25 07:28:57
合計ジャッジ時間 2,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,948 KB
testcase_01 AC 43 ms
58,888 KB
testcase_02 AC 42 ms
59,608 KB
testcase_03 AC 38 ms
52,764 KB
testcase_04 AC 38 ms
52,812 KB
testcase_05 AC 41 ms
59,396 KB
testcase_06 AC 43 ms
59,996 KB
testcase_07 AC 37 ms
53,064 KB
testcase_08 AC 42 ms
58,212 KB
testcase_09 AC 42 ms
58,640 KB
testcase_10 AC 46 ms
62,452 KB
testcase_11 AC 49 ms
66,204 KB
testcase_12 AC 39 ms
52,240 KB
testcase_13 AC 43 ms
58,960 KB
testcase_14 AC 41 ms
58,268 KB
testcase_15 AC 42 ms
58,492 KB
testcase_16 AC 38 ms
53,188 KB
testcase_17 AC 38 ms
52,828 KB
testcase_18 AC 35 ms
52,240 KB
testcase_19 AC 39 ms
58,848 KB
testcase_20 AC 41 ms
57,584 KB
testcase_21 AC 41 ms
57,964 KB
testcase_22 AC 39 ms
52,000 KB
testcase_23 AC 50 ms
66,992 KB
testcase_24 AC 39 ms
52,396 KB
testcase_25 AC 37 ms
53,576 KB
testcase_26 AC 38 ms
52,108 KB
testcase_27 AC 39 ms
52,868 KB
testcase_28 AC 42 ms
59,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = list(map(int,input().split()))
m=max(a)
g = [0]* (m + 1)

for i in range(1,m+1):
    if g[i-1] == k:
        g[i] = 0
    else:
        g[i] = g[i-1] + 1

cnt = 0
for i in a:
    cnt^=g[i]

print('NO' if cnt == 0 else 'YES')    
0