結果

問題 No.485 方程式のお勉強
ユーザー tatsukawa
提出日時 2017-02-25 20:31:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 1,382 ms
コンパイル使用メモリ 164,876 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 03:56:42
合計ジャッジ時間 2,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define get_variable_name(x) #x
#define debug(x) cout << #x << " = " << x << endl
#define rep(i, begin, end) for(int (i) = (begin); (i) < (end); (i)++)

using namespace std;
using ll = int64_t;

int main() {
    ios::sync_with_stdio(false);

    int a, b;
    cin >> a >> b;
    if(b % a == 0) {
        cout << b / a << endl;
    } else {
        cout << "NO" << endl;
    }
}
0