結果
問題 | No.1363 [Zelkova Last Tune] 誰がその最後のベルを鳴らすのか? |
ユーザー | leaf_1415 |
提出日時 | 2021-01-22 22:06:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 977 bytes |
コンパイル時間 | 653 ms |
コンパイル使用メモリ | 80,672 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 15:03:10 |
合計ジャッジ時間 | 2,024 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 50 ms
5,376 KB |
testcase_02 | AC | 95 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #include <complex> #define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) #define all(x) (x).begin(),(x).end() #define inf 1e18 #define mod 1000000007 using namespace std; typedef long long llint; typedef long long ll; typedef pair<llint, llint> P; ll T; ll k, x, y; ll a[1005], p[1005]; int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> T; while(T--){ cin >> k >> x >> y; rep(i, 1, k) cin >> a[i]; rep(i, 1, k) cin >> p[i]; ll ans = 0; rep(i, 1, k) ans ^= a[i] % p[i]; if(y-ans >= x) cout << "C" << endl; else cout << "Z" << endl; } return 0; }