結果
問題 |
No.1091 Range Xor Query
|
ユーザー |
|
提出日時 | 2020-06-28 01:24:22 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 334 bytes |
コンパイル時間 | 2,705 ms |
コンパイル使用メモリ | 194,372 KB |
最終ジャッジ日時 | 2025-01-11 13:09:09 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 27 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | int n,q; scanf("%d%d",&n,&q); | ~~~~~^~~~~~~~~~~~~~ main.cpp:10:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | rep(i,n) scanf("%d",&a[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:16:31: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | int l,r; scanf("%d%d",&l,&r); l--; | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; int main(){ int n,q; scanf("%d%d",&n,&q); vector<int> a(n); rep(i,n) scanf("%d",&a[i]); vector<int> cum(n+1); rep(i,n) cum[i+1]=cum[i]^a[i]; rep(_,q){ int l,r; scanf("%d%d",&l,&r); l--; printf("%d\n",cum[r]^cum[l]); } return 0; }