結果

問題 No.882 約数倍数
ユーザー NagisaNagisa
提出日時 2019-09-13 21:30:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 500 ms
コード長 252 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 53,828 KB
最終ジャッジ日時 2024-07-04 03:59:14
合計ジャッジ時間 1,532 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,404 KB
testcase_01 AC 35 ms
53,828 KB
testcase_02 AC 34 ms
53,484 KB
testcase_03 AC 33 ms
52,192 KB
testcase_04 AC 34 ms
53,496 KB
testcase_05 AC 34 ms
53,388 KB
testcase_06 AC 35 ms
53,564 KB
testcase_07 AC 39 ms
53,028 KB
testcase_08 AC 37 ms
53,308 KB
testcase_09 AC 35 ms
52,876 KB
testcase_10 AC 34 ms
52,828 KB
testcase_11 AC 35 ms
52,932 KB
testcase_12 AC 33 ms
53,620 KB
testcase_13 AC 34 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N, B = map(int,input().split())
P = [1,N]
for k in range(2,math.floor(math.sqrt(N))+1):
    if N % k == 0:
        P.append(k)
        P.append(N//k)

for k in range(1,101):
    if k*B in P:
        print("YES")
        exit(0)
print("NO")
0