結果

問題 No.2022 Antilogarithm
ユーザー tnakao0123
提出日時 2022-07-31 02:23:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 39,936 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-20 22:33:45
合計ジャッジ時間 1,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 62
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2022.cc:  No.2022 Antilogarithm - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

/* typedef */

typedef long long ll;

/* global variables */

/* subroutines */

/* main */

int main() {
  ll a, b;
  scanf("%lld%lld", &a, &b);

  if (a < abs(b)) puts("Yes");
  else puts("No");
  return 0;
}
0