結果
問題 | No.337 P versus NP |
ユーザー |
![]() |
提出日時 | 2018-03-28 17:26:52 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 218 bytes |
コンパイル時間 | 505 ms |
コンパイル使用メモリ | 58,352 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 13:12:54 |
合計ジャッジ時間 | 1,478 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#include <iostream>#include <string>#include <vector>#include <algorithm>using namespace std;int main() {int n,p;cin >> n >> p;if(p == n * p)cout << "=\n";else cout << "!=\n";return 0;}