結果

問題 No.882 約数倍数
ユーザー えいじえいじ
提出日時 2023-10-05 21:49:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 500 ms
コード長 194 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-26 15:10:34
合計ジャッジ時間 1,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = [int(x) for x in input().split()]
t = []
for i in range(1, a + 1):
    if a % i == 0:
        t.append(i)
for tt in t:
    if tt % b == 0:
        print("YES")
        exit()
print("NO")
0