結果
| 問題 | No.485 方程式のお勉強 |
| コンテスト | |
| ユーザー |
J31831276
|
| 提出日時 | 2018-12-29 00:32:25 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 244 bytes |
| 記録 | |
| コンパイル時間 | 260 ms |
| コンパイル使用メモリ | 72,648 KB |
| 実行使用メモリ | 9,784 KB |
| 最終ジャッジ日時 | 2026-09-07 14:46:57 |
| 合計ジャッジ時間 | 1,364 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_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