結果

問題 No.1456 Range Xor
ユーザー NaHCO314
提出日時 2021-03-31 19:24:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 160 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 86,828 KB
最終ジャッジ日時 2024-12-15 06:46:53
合計ジャッジ時間 4,989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, *a = map(int, open(0).read().split())
if (not 1 <= n <= 10**5) or (not 0 <= k <= 10**9) or (not all(map(lambda x: 0<=x<=10**9, a))):
    raise ValueError
0