結果

問題 No.85 TVザッピング(1)
ユーザー gorugo30gorugo30
提出日時 2021-02-26 17:48:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 95 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 53,696 KB
最終ジャッジ日時 2024-04-10 07:33:31
合計ジャッジ時間 2,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,092 KB
testcase_01 AC 39 ms
52,220 KB
testcase_02 AC 39 ms
53,080 KB
testcase_03 AC 39 ms
52,640 KB
testcase_04 AC 40 ms
52,276 KB
testcase_05 AC 40 ms
52,248 KB
testcase_06 AC 39 ms
53,492 KB
testcase_07 AC 41 ms
53,696 KB
testcase_08 AC 50 ms
52,208 KB
testcase_09 AC 43 ms
51,968 KB
testcase_10 AC 43 ms
52,688 KB
testcase_11 AC 40 ms
53,356 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 43 ms
52,460 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 40 ms
52,144 KB
testcase_18 WA -
testcase_19 AC 40 ms
53,572 KB
testcase_20 AC 45 ms
52,240 KB
testcase_21 AC 43 ms
53,072 KB
testcase_22 AC 40 ms
52,488 KB
testcase_23 AC 39 ms
53,336 KB
testcase_24 AC 40 ms
53,504 KB
testcase_25 AC 40 ms
53,348 KB
testcase_26 AC 40 ms
52,344 KB
testcase_27 AC 40 ms
52,064 KB
testcase_28 AC 40 ms
52,556 KB
testcase_29 AC 41 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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