結果

問題 No.1224 I hate Sqrt Inequality
ユーザー deepjugglingdeepjuggling
提出日時 2023-06-15 07:06:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 96 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 71,600 KB
最終ジャッジ日時 2023-09-05 13:46:58
合計ジャッジ時間 2,365 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,424 KB
testcase_01 AC 77 ms
71,296 KB
testcase_02 AC 78 ms
71,488 KB
testcase_03 AC 80 ms
71,300 KB
testcase_04 AC 77 ms
71,564 KB
testcase_05 AC 77 ms
71,408 KB
testcase_06 AC 77 ms
71,408 KB
testcase_07 AC 77 ms
71,408 KB
testcase_08 AC 77 ms
71,600 KB
testcase_09 AC 77 ms
71,420 KB
testcase_10 AC 77 ms
71,300 KB
testcase_11 AC 77 ms
71,396 KB
testcase_12 WA -
testcase_13 AC 81 ms
71,476 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
a *= 10**18
if a % b == 0:
    print("No")
else:
    print("Yes")
0