結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,436 KB
testcase_01 AC 33 ms
52,828 KB
testcase_02 AC 34 ms
52,416 KB
testcase_03 AC 34 ms
52,552 KB
testcase_04 AC 32 ms
52,952 KB
testcase_05 AC 31 ms
52,704 KB
testcase_06 AC 31 ms
52,952 KB
testcase_07 AC 31 ms
51,988 KB
testcase_08 AC 32 ms
53,000 KB
testcase_09 WA -
testcase_10 AC 32 ms
51,964 KB
testcase_11 AC 32 ms
52,556 KB
testcase_12 AC 32 ms
52,200 KB
testcase_13 AC 33 ms
52,392 KB
testcase_14 WA -
testcase_15 AC 34 ms
52,832 KB
testcase_16 AC 35 ms
53,244 KB
testcase_17 AC 35 ms
53,164 KB
testcase_18 AC 35 ms
52,640 KB
testcase_19 AC 33 ms
52,336 KB
testcase_20 AC 33 ms
52,428 KB
testcase_21 AC 35 ms
53,220 KB
testcase_22 AC 36 ms
52,864 KB
testcase_23 AC 36 ms
53,276 KB
testcase_24 AC 34 ms
54,356 KB
testcase_25 AC 36 ms
52,452 KB
testcase_26 AC 34 ms
52,692 KB
testcase_27 AC 34 ms
52,128 KB
testcase_28 AC 35 ms
51,504 KB
testcase_29 AC 35 ms
53,008 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 == 1:
        prt(1)
    else:
        prt(0)

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

prt(0)
0