結果

問題 No.85 TVザッピング(1)
ユーザー rlangevinrlangevin
提出日時 2023-01-16 01:19:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 127 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 87,100 KB
実行使用メモリ 71,568 KB
最終ジャッジ日時 2023-08-28 15:46:53
合計ジャッジ時間 4,525 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,228 KB
testcase_01 AC 69 ms
71,388 KB
testcase_02 AC 70 ms
71,284 KB
testcase_03 AC 70 ms
71,040 KB
testcase_04 AC 69 ms
71,400 KB
testcase_05 AC 72 ms
71,316 KB
testcase_06 AC 70 ms
71,092 KB
testcase_07 AC 70 ms
71,316 KB
testcase_08 AC 70 ms
71,460 KB
testcase_09 WA -
testcase_10 AC 71 ms
71,444 KB
testcase_11 AC 70 ms
71,364 KB
testcase_12 AC 69 ms
71,356 KB
testcase_13 AC 70 ms
71,260 KB
testcase_14 WA -
testcase_15 AC 69 ms
71,320 KB
testcase_16 AC 70 ms
71,344 KB
testcase_17 AC 70 ms
71,348 KB
testcase_18 AC 70 ms
71,456 KB
testcase_19 AC 69 ms
71,256 KB
testcase_20 AC 69 ms
71,148 KB
testcase_21 AC 69 ms
71,384 KB
testcase_22 AC 67 ms
71,432 KB
testcase_23 AC 69 ms
71,240 KB
testcase_24 AC 71 ms
71,268 KB
testcase_25 AC 73 ms
71,440 KB
testcase_26 AC 71 ms
71,236 KB
testcase_27 AC 71 ms
71,228 KB
testcase_28 AC 70 ms
71,364 KB
testcase_29 AC 72 ms
71,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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