結果
問題 | No.2022 Antilogarithm |
ユーザー | alavrov |
提出日時 | 2022-07-29 21:41:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 245 bytes |
コンパイル時間 | 1,499 ms |
コンパイル使用メモリ | 165,232 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-19 14:04:15 |
合計ジャッジ時間 | 3,085 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 62 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define IO ios_base::sync_with_stdio(0);cin.tie(0); #define endl '\n' int main() { IO; long long a, b; cin >> a >> b; cout << (abs(a) < abs(b) ? "Yes" : "No") << endl; return 0; }