結果

問題 No.1224 I hate Sqrt Inequality
ユーザー yamasaKit_
提出日時 2021-01-05 23:26:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 122 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-06 08:37:22
合計ジャッジ時間 1,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

_, b = map(int, input().split())
if b == 1:
    print('Yes')
    exit()
ans = 'Yes' if 10**10000 % b else 'No'
print(ans)
0