結果

問題 No.882 約数倍数
ユーザー 沙耶花沙耶花
提出日時 2019-09-13 21:21:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 500 ms
コード長 325 bytes
コンパイル時間 1,512 ms
コンパイル使用メモリ 166,020 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 03:54:26
合計ジャッジ時間 1,978 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 100000000



int main(){
	long long A,B;
	cin>>A>>B;
	
	for(int i=1;i<=100000;i++){
		if(A%i==0&&i%B==0){
			cout<<"YES"<<endl;
			return 0;
		}
	}
	
	cout<<"NO"<<endl;
	
	
	return 0;
}
0