結果

問題 No.383 レーティング
ユーザー knk
提出日時 2017-09-18 10:20:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 616 ms
コンパイル使用メモリ 69,504 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 02:25:06
合計ジャッジ時間 1,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
//using namespace std;
typedef unsigned long long ul;
typedef signed long long ll;

int main(void)
{
  std::cin.tie(0);
  std::ios::sync_with_stdio(false);
  std::cout << std::fixed;
  int a, b;
  std::cin >> a >> b;
  int ans = b-a;
  std::cout << (ans==0 ? "0" : ((ans>0) ? "+"+std::to_string(ans) : "-"+std::to_string(-ans))) << std::endl;
  return 0;
}
0