結果

問題 No.85 TVザッピング(1)
ユーザー ntudantuda
提出日時 2024-01-05 23:34:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 53,624 KB
最終ジャッジ日時 2024-09-27 19:11:16
合計ジャッジ時間 1,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,280 KB
testcase_01 AC 36 ms
52,692 KB
testcase_02 AC 32 ms
52,136 KB
testcase_03 AC 32 ms
52,744 KB
testcase_04 AC 31 ms
53,276 KB
testcase_05 AC 39 ms
52,768 KB
testcase_06 AC 31 ms
53,624 KB
testcase_07 AC 33 ms
52,472 KB
testcase_08 AC 32 ms
52,844 KB
testcase_09 AC 32 ms
53,272 KB
testcase_10 AC 32 ms
53,000 KB
testcase_11 AC 32 ms
52,804 KB
testcase_12 AC 32 ms
52,212 KB
testcase_13 AC 34 ms
52,880 KB
testcase_14 AC 32 ms
52,688 KB
testcase_15 AC 32 ms
51,500 KB
testcase_16 AC 32 ms
51,976 KB
testcase_17 AC 31 ms
52,820 KB
testcase_18 AC 32 ms
52,476 KB
testcase_19 AC 32 ms
52,216 KB
testcase_20 AC 33 ms
52,932 KB
testcase_21 AC 32 ms
52,432 KB
testcase_22 AC 32 ms
52,428 KB
testcase_23 AC 32 ms
53,172 KB
testcase_24 AC 32 ms
51,688 KB
testcase_25 AC 32 ms
52,796 KB
testcase_26 AC 33 ms
52,540 KB
testcase_27 AC 32 ms
52,220 KB
testcase_28 AC 32 ms
52,632 KB
testcase_29 AC 31 ms
52,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def prt(x):
    if x == 0:
        print("NO")
        exit()
    else:
        print("YES")
        exit()

if N > M:
    N, M = M, N

if N == 1:
    if M <= 2:
        prt(1)
    else:
        prt(0)

if N % 2 == 0 or M % 2 == 0:
    prt(1)

prt(0)
0