結果

問題 No.85 TVザッピング(1)
ユーザー 👑 colognecologne
提出日時 2022-01-26 19:54:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 1,113 ms
コンパイル使用メモリ 86,736 KB
実行使用メモリ 71,648 KB
最終ジャッジ日時 2023-08-25 01:57:38
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,648 KB
testcase_01 AC 68 ms
71,276 KB
testcase_02 AC 69 ms
71,456 KB
testcase_03 AC 71 ms
71,336 KB
testcase_04 AC 68 ms
71,548 KB
testcase_05 AC 73 ms
71,516 KB
testcase_06 AC 70 ms
71,260 KB
testcase_07 AC 68 ms
71,260 KB
testcase_08 AC 68 ms
71,436 KB
testcase_09 WA -
testcase_10 AC 70 ms
71,260 KB
testcase_11 AC 69 ms
71,380 KB
testcase_12 AC 67 ms
71,276 KB
testcase_13 AC 68 ms
71,360 KB
testcase_14 WA -
testcase_15 AC 70 ms
71,556 KB
testcase_16 AC 72 ms
71,268 KB
testcase_17 AC 71 ms
71,336 KB
testcase_18 AC 69 ms
71,392 KB
testcase_19 AC 68 ms
71,264 KB
testcase_20 AC 70 ms
71,544 KB
testcase_21 AC 70 ms
71,124 KB
testcase_22 AC 69 ms
71,264 KB
testcase_23 AC 69 ms
71,444 KB
testcase_24 AC 70 ms
71,112 KB
testcase_25 AC 70 ms
71,580 KB
testcase_26 AC 71 ms
71,436 KB
testcase_27 AC 70 ms
71,604 KB
testcase_28 AC 70 ms
71,264 KB
testcase_29 AC 67 ms
71,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    N, M, C = map(int, input().split())
    print('YES' if N*M % 2 == 0 and N > 1 and M > 1 else 'NO')


if __name__ == '__main__':
    main()
0