結果
問題 | No.2811 Calculation Within Sequence |
ユーザー | mattu34 |
提出日時 | 2024-07-26 20:39:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,401 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 82,220 KB |
実行使用メモリ | 125,308 KB |
最終ジャッジ日時 | 2024-07-26 20:40:11 |
合計ジャッジ時間 | 13,254 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
88,992 KB |
testcase_01 | AC | 135 ms
88,996 KB |
testcase_02 | AC | 140 ms
89,160 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 215 ms
123,868 KB |
testcase_06 | AC | 212 ms
123,976 KB |
testcase_07 | AC | 220 ms
123,980 KB |
testcase_08 | AC | 235 ms
123,972 KB |
testcase_09 | AC | 205 ms
123,984 KB |
testcase_10 | AC | 204 ms
124,112 KB |
testcase_11 | WA | - |
testcase_12 | AC | 207 ms
123,972 KB |
testcase_13 | AC | 213 ms
123,972 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 213 ms
124,740 KB |
testcase_18 | WA | - |
testcase_19 | AC | 213 ms
123,720 KB |
testcase_20 | WA | - |
testcase_21 | AC | 217 ms
124,872 KB |
testcase_22 | AC | 221 ms
124,972 KB |
testcase_23 | AC | 216 ms
125,308 KB |
testcase_24 | AC | 188 ms
122,964 KB |
testcase_25 | AC | 176 ms
100,320 KB |
testcase_26 | WA | - |
testcase_27 | AC | 193 ms
118,580 KB |
testcase_28 | AC | 140 ms
92,656 KB |
testcase_29 | AC | 166 ms
115,328 KB |
testcase_30 | AC | 182 ms
120,164 KB |
testcase_31 | WA | - |
testcase_32 | AC | 154 ms
94,956 KB |
testcase_33 | WA | - |
testcase_34 | AC | 188 ms
117,572 KB |
testcase_35 | AC | 157 ms
104,516 KB |
testcase_36 | AC | 172 ms
116,820 KB |
testcase_37 | AC | 163 ms
108,392 KB |
testcase_38 | WA | - |
testcase_39 | AC | 166 ms
110,096 KB |
testcase_40 | AC | 175 ms
121,496 KB |
testcase_41 | AC | 186 ms
118,208 KB |
testcase_42 | AC | 156 ms
104,056 KB |
testcase_43 | AC | 164 ms
111,844 KB |
ソースコード
from collections import * import sys import heapq from heapq import heapify, heappop, heappush import bisect import itertools from functools import lru_cache from types import GeneratorType from fractions import Fraction import math import copy import random # import numpy as np # sys.setrecursionlimit(int(1e7)) # @lru_cache(maxsize=None) # CPython特化 # @bootstrap # PyPy特化(こっちのほうが速い) yield dfs(), yield Noneを忘れずに def bootstrap(f, stack=[]): # yield def wrappedfunc(*args, **kwargs): if stack: return f(*args, **kwargs) else: to = f(*args, **kwargs) while True: if type(to) is GeneratorType: stack.append(to) to = next(to) else: stack.pop() if not stack: break to = stack[-1].send(to) return to return wrappedfunc dxdy1 = ((0, 1), (0, -1), (1, 0), (-1, 0)) # 上下右左 dxdy2 = ( (0, 1), (0, -1), (1, 0), (-1, 0), (1, 1), (-1, -1), (1, -1), (-1, 1), ) # 8方向すべて dxdy3 = ((0, 1), (1, 0)) # 右 or 下 dxdy4 = ((1, 1), (1, -1), (-1, 1), (-1, -1)) # 斜め INF = float("inf") _INF = 1 << 60 MOD = 998244353 mod = 998244353 MOD2 = 10**9 + 7 mod2 = 10**9 + 7 # memo : len([a,b,...,z])==26 # memo : 2^20 >= 10^6 # 小数の計算を避ける : x/y -> (x*big)//y ex:big=10**9 # @:小さい文字, ~:大きい文字,None: 空の文字列 # ユークリッドの互除法:gcd(x,y)=gcd(x,y-x) # memo : d 桁以下の p 進表記を用いると p^d-1 以下のすべての # 非負整数を表現することができる # memo : (X,Y) -> (X+Y,X−Y) <=> 点を原点を中心に45度回転し、√2倍に拡大 # memo : (x,y)のx正から見た偏角をラジアンで(-πからπ]: math.atan2(y, x) # memo : a < bのとき ⌊a⌋ ≦ ⌊b⌋ input = lambda: sys.stdin.readline().rstrip() mi = lambda: map(int, input().split()) li = lambda: list(mi()) ii = lambda: int(input()) py = lambda: print("Yes") pn = lambda: print("No") pf = lambda: print("First") ps = lambda: print("Second") a, b = mi() T = li() S = li() odd = False for t in T: if t % 2 == 1: odd = True if odd: py() exit() for s in S: if s % 2 == 1: pn() exit() py()