結果
問題 | No.85 TVザッピング(1) |
ユーザー |
![]() |
提出日時 | 2020-02-02 20:04:56 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 5,000 ms |
コード長 | 289 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-18 21:22:55 |
合計ジャッジ時間 | 1,886 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
import sysread = sys.stdin.buffer.readreadline = sys.stdin.buffer.readlinereadlines = sys.stdin.buffer.readlinesa,b,c = map(int,read().split())answer = 'NO' if (a*b)&1 else 'YES'if (a == 1) ^ (b == 1):answer = 'NO'if (a,b) in [(1,2),(2,1)]:answer = 'YES'print(answer)