結果
問題 | No.669 対決!!! 飲み比べ |
ユーザー | Yuki Kobiyama |
提出日時 | 2023-08-25 13:29:16 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 4,320 bytes |
コンパイル時間 | 2,659 ms |
コンパイル使用メモリ | 164,520 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 08:02:35 |
合計ジャッジ時間 | 3,709 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp:46:72: warning: unqualified call to 'std::forward' [-Wunqualified-std-cast-call] 46 | template <class T, class... U> void in(T&& x, U &&...y) { cin >> x; in(forward<U>(y)...); } | ^ | std:: main.cpp:67:5: note: in instantiation of function template specialization 'in<long long &, long long &>' requested here 67 | inll(N, K); | ^ main.cpp:50:35: note: expanded from macro 'inll' 50 | #define inll(...) ll __VA_ARGS__; in(__VA_ARGS__) | ^ 1 warning generated.
ソースコード
#pragma region header #include <bits/stdc++.h> using namespace std; #define rep1(a) for(ll i = 0; i < a; i++) #define rep2(i, a) for(ll i = 0; i < a; i++) #define rep3(i, a, b) for(ll i = a; i < b; i++) #define rep4(i, a, b, c) for(ll i = a; i < b; i += c) #define overload4(a, b, c, d, e, ...) e #define rep(...) overload4(__VA_ARGS__, rep4, rep3, rep2, rep1)(__VA_ARGS__) #define rep_sqrt(i, a, n) for(ll i = a; i * i <= n; i++) #define rrep1(a) for(ll i = a - 1; i >= 0; i--) #define rrep2(i, a) for(ll i = a - 1; i >= 0; i--) #define rrep3(i, a, b) for(ll i = a - 1; i >= b; i--) #define rrep4(i, a, b, c) for(ll i = a - 1; i >= b; i -= c) #define overload4_reverse(a, b, c, d, e, ...) e #define rrep(...) overload4_reverse(__VA_ARGS__, rrep4, rrep3, rrep2, rrep1)(__VA_ARGS__) #define INF ((1LL << 62) - (1LL << 31)) #define mpa make_pair #define pb push_back #define all(a) (a).begin(), (a).end() #define MOD 1000000007 //998244353 using ll = long long; using ld = long double; using ull = unsigned long long; using int128 = __int128_t; using vll = vector<ll>; using vc = vector<char>; using vs = vector<string>; using vpll = vector<pair<ll, ll>>; using vvll = vector<vector<ll>>; using vvc = vector<vector<char>>; using pqueue = priority_queue<pair<ll, ll>, vector<pair<ll, ll>>, greater<pair<ll, ll>>>; ll dy[4] = { 1, -1, 0, 0 }, dx[4] = { 0, 0, 1, -1 }; // ll dy[8] = {1,1,1,0,0,-1,-1,-1}, dx[8] = {1,0,-1,1,-1,1,0,-1}; bool inrange(ll H, ll W, ll y, ll x) { return 0 <= y && y < H && 0 <= x && x < W; } ll gcd(ll a, ll b) { return (a % b == 0) ? b : gcd(b, a % b); } void Yes(bool flag) { cout << (flag ? "Yes" : "No") << endl; } void YES(bool flag) { cout << (flag ? "YES" : "NO") << endl; } bool comp(int a, int b) { return a > b; } //降順 template<class T> bool chmin(T& a, const T& b) { if (a > b) { a = b; return 1; } return 0; } template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T, class U> bool chmin(T& a, const U& b) { if (a > T(b)) { a = b; return 1; } return 0; } template<class T, class U> bool chmax(T& a, const U& b) { if (a < T(b)) { a = b; return 1; } return 0; } __int128_t string_to_int128(const string& s) { __int128_t res = 0; bool neg = s[0] == '-'; for (size_t i = neg ? 1 : 0; i < s.size(); ++i) res = res * 10 + (s[i] - '0'); return neg ? -res : res; } void in() {}; template <class T, class... U> void in(T&& x, U &&...y) { cin >> x; in(forward<U>(y)...); } int print() { /*cout << '\n';*/ return 0; } void print_int128(__int128_t h) { string s; bool neg = h < 0; if (neg) h = -h; do { s = char(h % 10 + '0') + s; h /= 10; } while (h); if (neg) s = '-' + s; cout << s; } template <class head, class... tail> int print(head&& h, tail&&... t) { if constexpr (is_same_v<decay_t<head>, __int128_t>) { print_int128(h); } else { cout << h; } cout << (sizeof...(t) ? ' ' : '\n'); return print(forward<tail>(t)...); } #define inll(...) ll __VA_ARGS__; in(__VA_ARGS__) #define inld(...) ld __VA_ARGS__; in(__VA_ARGS__) #define instr(...) string __VA_ARGS__; in(__VA_ARGS__) #define invll(vec,n) vll vec(n); rep(i, n) in(vec[i]); #define invs(vec,n) vs vec(n); rep(i, n) in(vec[i]); #define invvll(vec,h,w) vvll vec(h, vll(w)); rep(i, h) rep(j, w) in(vec[i][j]); #define invvc(vec,h,w) vvc vec(h, vc(w)); rep(i, h) rep(j, w) in(vec[i][j]); template <class T> int print(vector<T>& a, char sep = ' ') { for (auto& val : a) cout << val << (&val != &a.back() ? sep : '\n'); return 0; } template <class T>int print(vector<vector<T>>& a) { for (auto& row : a) print(row); return 0; } template <class K, class V> int print(map<K, V>& m, char sep = ' ') { for (auto& p : m) cout << p.second << (&p != &*prev(m.end()) ? sep : '\n'); return 0; } template <class T> int print(set<T>& s, char sep = ' ') { for (auto& val : s) cout << val << (&val != &*prev(s.end()) ? sep : '\n'); return 0; } template <class T> int print(multiset<T>& ms, char sep = ' ') { for (auto& val : ms) cout << val << (&val != &*prev(ms.end()) ? sep : '\n'); return 0; } /*cout << fixed << setprecision(15); for double*/ #pragma endregion header int main() { inll(N, K); invll(A, N); ll res; rep(i, N) { if (i == 0) res = (A[0] % (K + 1)); else res ^= (A[i] % (K + 1)); } YES(res); return 0; }