結果

問題 No.882 約数倍数
ユーザー leaf_1415leaf_1415
提出日時 2019-09-13 21:21:27
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 500 ms
コード長 207 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 54,128 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 03:54:20
合計ジャッジ時間 897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int a, b;

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> a >> b;
	if(a % b == 0) cout << "YES" << endl;
	else cout << "NO" << endl;
	return 0;
}
0