結果
| 問題 | No.882 約数倍数 |
| コンテスト | |
| ユーザー |
CELICA
|
| 提出日時 | 2020-07-07 21:29:01 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 500 ms |
| コード長 | 269 bytes |
| 記録 | |
| コンパイル時間 | 1,543 ms |
| コンパイル使用メモリ | 177,352 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-18 03:04:44 |
| 合計ジャッジ時間 | 2,135 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using ll = long long;
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int a,b;
cin >> a >> b;
if ((a % b) == 0)
cout << "YES\n";
else
cout << "NO\n";
return 0;
}
CELICA