結果
問題 | No.1363 [Zelkova Last Tune] 誰がその最後のベルを鳴らすのか? |
ユーザー | 👑 Kazun |
提出日時 | 2020-12-04 02:36:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 182 ms / 2,000 ms |
コード長 | 241 bytes |
コンパイル時間 | 277 ms |
コンパイル使用メモリ | 82,508 KB |
実行使用メモリ | 77,208 KB |
最終ジャッジ日時 | 2024-12-29 10:27:00 |
合計ジャッジ時間 | 2,610 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 |
ソースコード
import sys T=int(input()) for _ in range(T): K,X,Y=map(int,input().split()) A=list(map(int,input().split())) P=list(map(int,input().split())) G=0 for a,p in zip(A,P): G^=a%(p+1) print("Z" if Y<X+G else "C")