結果
| 問題 |
No.882 約数倍数
|
| コンテスト | |
| ユーザー |
kpinkcat
|
| 提出日時 | 2023-08-22 16:57:51 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 500 ms |
| コード長 | 262 bytes |
| コンパイル時間 | 1,038 ms |
| コンパイル使用メモリ | 99,188 KB |
| 最終ジャッジ日時 | 2025-02-16 12:19:07 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 10 |
ソースコード
#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
using namespace std;
int main()
{
long long a, b;
cin >> a >> b;
cout << (!(a%b) ? "YES" : "NO") << endl;
}
kpinkcat