結果
問題 |
No.8032 Unavailability of Inequality Signs
|
ユーザー |
![]() |
提出日時 | 2018-04-01 22:19:43 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 337 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 28,416 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 05:50:49 |
合計ジャッジ時間 | 2,338 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 7 |
ソースコード
#include "stdio.h" int main(){ int n; scanf("%d",&n); int i; for(i=0;i<n;i++){ int a,b; scanf("%d %d",&a,&b); if(a/b==0){ printf("%c\n",';'+1); }else if(b/a==0){ printf("%c\n",';'+3); }else{ printf("%c\n",';'+2); } } return 0; }