結果

問題 No.337 P versus NP
ユーザー nukachanukacha
提出日時 2017-05-03 05:04:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 62,684 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-14 05:04:52
合計ジャッジ時間 1,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main() {
    int n, p;
    std::cin >> n >> p;
    if (p != n * p) {
        std::cout << "!=" << std::endl;
    } else {
        std::cout << "=" << std::endl;
    }
}
0