結果
| 問題 | No.882 約数倍数 | 
| コンテスト | |
| ユーザー |  panapanagdf | 
| 提出日時 | 2019-09-23 18:49:37 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                RE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 122 bytes | 
| コンパイル時間 | 164 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-09-19 04:30:18 | 
| 合計ジャッジ時間 | 1,168 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 4 | 
| other | RE * 10 | 
ソースコード
a=[int(i) for i in input().split()]
for i in range(1,101):
    if (a[0]/i.isdigit()) and (a[1]%i==0):
        print("YES")
            
            
            
        