結果

問題 No.85 TVザッピング(1)
ユーザー ntudantuda
提出日時 2024-01-05 23:18:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 81,824 KB
実行使用メモリ 53,288 KB
最終ジャッジ日時 2024-09-27 19:10:53
合計ジャッジ時間 2,354 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,104 KB
testcase_01 AC 34 ms
52,548 KB
testcase_02 AC 38 ms
52,436 KB
testcase_03 AC 32 ms
52,516 KB
testcase_04 AC 32 ms
52,752 KB
testcase_05 AC 32 ms
52,924 KB
testcase_06 AC 32 ms
52,904 KB
testcase_07 AC 32 ms
52,488 KB
testcase_08 AC 32 ms
52,568 KB
testcase_09 AC 33 ms
53,288 KB
testcase_10 AC 32 ms
52,636 KB
testcase_11 AC 34 ms
53,064 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 33 ms
52,116 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 33 ms
52,040 KB
testcase_18 WA -
testcase_19 AC 35 ms
52,124 KB
testcase_20 AC 34 ms
53,104 KB
testcase_21 AC 33 ms
51,836 KB
testcase_22 AC 33 ms
52,876 KB
testcase_23 AC 33 ms
52,556 KB
testcase_24 AC 34 ms
51,424 KB
testcase_25 AC 33 ms
53,136 KB
testcase_26 AC 33 ms
52,808 KB
testcase_27 AC 33 ms
52,360 KB
testcase_28 AC 32 ms
51,952 KB
testcase_29 AC 34 ms
52,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,C = map(int,input().split())
if N % 2 == 0 or M % 2 == 0:
    print("YES")
elif N == 1 and M == 1:
    print("YES")
else:
    print("NO")
0