結果

問題 No.85 TVザッピング(1)
ユーザー 👑 KazunKazun
提出日時 2020-11-16 17:00:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 71,628 KB
最終ジャッジ日時 2023-09-30 07:19:51
合計ジャッジ時間 3,519 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,292 KB
testcase_01 AC 65 ms
71,112 KB
testcase_02 AC 66 ms
71,512 KB
testcase_03 AC 64 ms
71,264 KB
testcase_04 AC 63 ms
71,328 KB
testcase_05 AC 66 ms
71,320 KB
testcase_06 AC 62 ms
71,520 KB
testcase_07 AC 66 ms
71,320 KB
testcase_08 AC 63 ms
71,372 KB
testcase_09 WA -
testcase_10 AC 62 ms
71,268 KB
testcase_11 AC 64 ms
71,260 KB
testcase_12 AC 62 ms
71,264 KB
testcase_13 AC 64 ms
71,560 KB
testcase_14 WA -
testcase_15 AC 63 ms
71,256 KB
testcase_16 AC 63 ms
71,384 KB
testcase_17 AC 63 ms
71,628 KB
testcase_18 AC 63 ms
71,492 KB
testcase_19 AC 63 ms
71,192 KB
testcase_20 AC 61 ms
71,328 KB
testcase_21 AC 60 ms
71,288 KB
testcase_22 AC 63 ms
71,340 KB
testcase_23 AC 61 ms
71,388 KB
testcase_24 AC 62 ms
71,148 KB
testcase_25 AC 63 ms
71,388 KB
testcase_26 AC 63 ms
71,292 KB
testcase_27 AC 61 ms
71,320 KB
testcase_28 AC 64 ms
71,568 KB
testcase_29 AC 65 ms
71,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,C=map(int,input().split())

if N==1 or M==1:
    print("NO")
elif (N*M)%2==1:
    print("NO")
else:
    print("YES")
0