結果

問題 No.1224 I hate Sqrt Inequality
ユーザー kfield
提出日時 2020-10-25 11:25:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 115 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 53,576 KB
最終ジャッジ日時 2024-07-21 17:30:41
合計ジャッジ時間 1,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 6 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())

c = (a/b)*10**30

if isinstance(c, int):
    print("Yes")
else:
    print("No")

0