結果
| 問題 | No.85 TVザッピング(1) |
| コンテスト | |
| ユーザー |
ytft
|
| 提出日時 | 2022-11-08 10:16:55 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 132 bytes |
| 記録 | |
| コンパイル時間 | 156 ms |
| コンパイル使用メモリ | 85,072 KB |
| 実行使用メモリ | 53,308 KB |
| 最終ジャッジ日時 | 2026-04-03 05:18:36 |
| 合計ジャッジ時間 | 5,424 ms |
|
ジャッジサーバーID (参考情報) |
judge4_1 / judge5_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 WA * 2 |
ソースコード
import sys input=lambda:sys.stdin.readline().rstrip() H,W,N=map(int,input().split()) print(['YES','NO'][(H*W%2)|((H==1)+(W==1)==1)])
ytft