結果

問題 No.8032 Unavailability of Inequality Signs
ユーザー zumin
提出日時 2021-02-25 00:55:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 773 ms
コンパイル使用メモリ 63,620 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-25 01:42:25
合計ジャッジ時間 1,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"

int main(){
    int n;
    scanf("%d",&n);
    for(int i=1;!((n-i)&INT64_MIN);i++){
        int a,b;
        scanf("%d%d",&a,&b);
        if(a==b) printf("=\n");
        else if((a-b)&INT64_MIN) printf("%c\n",';'+1);
        else printf("%c\n",';'+3);
    }
    return 0;
}
0