結果

問題 No.683 Two Operations No.3
ユーザー kohei2019kohei2019
提出日時 2022-03-12 15:41:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 100 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,804 KB
実行使用メモリ 53,560 KB
最終ジャッジ日時 2023-10-16 23:10:39
合計ジャッジ時間 1,987 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
53,544 KB
testcase_02 AC 35 ms
53,544 KB
testcase_03 AC 34 ms
53,544 KB
testcase_04 AC 35 ms
53,544 KB
testcase_05 AC 35 ms
53,544 KB
testcase_06 AC 34 ms
53,544 KB
testcase_07 WA -
testcase_08 AC 34 ms
53,544 KB
testcase_09 AC 36 ms
53,544 KB
testcase_10 AC 35 ms
53,544 KB
testcase_11 WA -
testcase_12 AC 34 ms
53,544 KB
testcase_13 AC 35 ms
53,544 KB
testcase_14 WA -
testcase_15 AC 35 ms
53,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int, input().split())
if A % 2 == 1 and B % 2 == 1:
    print('No')
else:
    print('Yes')
0