結果
問題 | No.240 ナイト散歩 |
ユーザー |
|
提出日時 | 2020-08-28 19:54:22 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 114 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,228 KB |
実行使用メモリ | 53,816 KB |
最終ジャッジ日時 | 2024-11-13 23:41:25 |
合計ジャッジ時間 | 2,441 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 25 WA * 5 |
ソースコード
x, y = map(int, input().split()) if abs(x) + abs(y) < 10: print('YES') else: print('NO')