結果

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

ソースコード

diff #

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

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

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

0