結果
問題 |
No.337 P versus NP
|
ユーザー |
|
提出日時 | 2017-05-03 05:01:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 199 bytes |
コンパイル時間 | 480 ms |
コンパイル使用メモリ | 64,000 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-14 05:02:17 |
合計ジャッジ時間 | 1,392 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 WA * 4 |
ソースコード
#include <iostream> int main() { int n, p; std::cin >> n >> p; if (p == 0 || n != 1) { std::cout << "!=" << std::endl; } else { std::cout << "=" << std::endl; } }