結果

問題 No.882 約数倍数
ユーザー 👑 KazunKazun
提出日時 2020-09-05 16:36:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 500 ms
コード長 145 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 53,612 KB
最終ジャッジ日時 2024-05-06 14:13:16
合計ジャッジ時間 1,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,920 KB
testcase_01 AC 39 ms
52,620 KB
testcase_02 AC 39 ms
53,480 KB
testcase_03 AC 38 ms
52,372 KB
testcase_04 AC 38 ms
52,668 KB
testcase_05 AC 40 ms
52,200 KB
testcase_06 AC 39 ms
53,612 KB
testcase_07 AC 39 ms
52,328 KB
testcase_08 AC 38 ms
52,156 KB
testcase_09 AC 38 ms
52,740 KB
testcase_10 AC 38 ms
52,344 KB
testcase_11 AC 38 ms
52,132 KB
testcase_12 AC 38 ms
52,800 KB
testcase_13 AC 38 ms
52,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=map(int,input().split())
Max=100

F=False
for i in range(1,Max+1):
    F|=(A%i==0) and (i%B==0)

if F:
    print("YES")
else:
    print("NO")
0