結果
| 問題 | No.337 P versus NP |
| コンテスト | |
| ユーザー |
hayaD
|
| 提出日時 | 2016-05-01 08:13:17 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 311 bytes |
| コンパイル時間 | 619 ms |
| コンパイル使用メモリ | 70,532 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-05 00:29:32 |
| 合計ジャッジ時間 | 1,526 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
#include <algorithm>
#include <iostream>
#include <map>
#include <numeric>
#include <set>
#include <sstream>
#include <string>
#include <vector>
#include <cmath>
using namespace std;
int main() {
int N,P;
cin >> N >> P;
if (P == N*P){
cout << "=" << endl;
}else{
cout << "!=" << endl;
}
return 0;
}
hayaD