結果

問題 No.383 レーティング
ユーザー tatsukawa
提出日時 2016-07-04 19:39:45
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 1,782 ms
コンパイル使用メモリ 157,224 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 20:11:52
合計ジャッジ時間 1,855 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define REP(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i))

using namespace std;

typedef int64_t ll;

const int INF = 1e8;
const double EPS = 1e-10;

int main() {
    ios_base::sync_with_stdio(false);
    int a, b;
    cin >> a >> b;
    if(a - b == 0) cout << 0 << endl;
    else cout << (a > b ? '-' : '+') << abs(a-b) << endl;
}
0