結果
| 問題 | No.2022 Antilogarithm |
| コンテスト | |
| ユーザー |
Eguy
|
| 提出日時 | 2022-07-29 21:46:36 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 69 ms / 2,000 ms |
| + 687µs | |
| コード長 | 260 bytes |
| 記録 | |
| コンパイル時間 | 248 ms |
| コンパイル使用メモリ | 95,972 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-18 16:50:18 |
| 合計ジャッジ時間 | 7,688 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 62 |
ソースコード
import sys, math
sys.setrecursionlimit(1000000)
INF = 1 << 100
#mod = 1000000007
mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
li = lambda: list(map(int, input().split()))
A, B = li()
if abs(A) < abs(B):
print('Yes')
else:
print('No')
Eguy