結果
問題 |
No.337 P versus NP
|
ユーザー |
|
提出日時 | 2018-05-15 21:57:22 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 476 bytes |
コンパイル時間 | 1,212 ms |
コンパイル使用メモリ | 158,832 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 12:11:49 |
合計ジャッジ時間 | 1,986 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 WA * 3 |
ソースコード
#include <bits/stdc++.h> #define REP(i,n) for(int i=0;i<n;i++) #define FOR(i,a,b) for(int i=(a);i<(b);i++) #define SSTR( x ) static_cast< std::ostringstream & >( \ ( std::ostringstream() << std::dec << x ) ).str() #define ALL(s) (s).begin(), (s).end() using namespace std; typedef long long unsigned int llu; typedef long long ll; int main (){ int N,P; while (cin >> N >> P){ if(N == 1) cout << "=" << endl; else cout << "!=" << endl; } return 0; }