結果

問題 No.3248 構築問題
ユーザー i_taku
提出日時 2025-09-01 11:48:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 82 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 52,832 KB
最終ジャッジ日時 2025-09-01 11:48:47
合計ジャッジ時間 1,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
if n == 1:
    print('No')
else:
    print('Yes')
0