結果
問題 | No.1850 Rewrite Product |
ユーザー | cologne |
提出日時 | 2022-02-25 21:21:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 230 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-03 15:57:37 |
合計ジャッジ時間 | 1,804 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | WA | - |
ソースコード
def main(): T = int(input()) for i in range(T): x, y = map(int, input().split()) if x == 1 and y != 1: print('No') else: print('Yes') if __name__ == '__main__': main()