結果
問題 | No.2022 Antilogarithm |
ユーザー |
![]() |
提出日時 | 2022-07-29 21:35:01 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 139 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 29,952 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 13:23:17 |
合計ジャッジ時間 | 1,765 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 62 |
ソースコード
#include <stdio.h>int main(){long long int a,b;scanf("%lld%lld",&a,&b);b = b>0?b:-b;if(a<b) printf("Yes");else printf("No");}