結果
| 問題 | No.485 方程式のお勉強 |
| コンテスト | |
| ユーザー |
J31831276
|
| 提出日時 | 2018-12-29 00:32:25 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 244 bytes |
| 記録 | |
| コンパイル時間 | 323 ms |
| コンパイル使用メモリ | 71,880 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-17 16:44:24 |
| 合計ジャッジ時間 | 1,120 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 3 |
| other | AC * 7 WA * 6 |
ソースコード
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <string>
#define ll long long
using namespace std;
int B[11];
int main(){
int a,b;
cin>>a>>b;
if(b%a==0) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
return 0;
}
J31831276