結果
問題 | No.8032 Unavailability of Inequality Signs |
ユーザー |
|
提出日時 | 2018-11-25 20:21:12 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 257 bytes |
コンパイル時間 | 551 ms |
コンパイル使用メモリ | 63,232 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-25 03:29:20 |
合計ジャッジ時間 | 1,998 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 7 |
ソースコード
#include <iostream> using namespace std; int main(int argc, char* argv[]) { int N,i; cin>>N; int A,B; for (i=0;i<N;i++){ cin>>A>>B; if (A>B){ cout<<">"<<endl; }else if (A==B){ cout<<"="<<endl; }else{ cout<<"<"<<endl; } } return 0; }