結果

問題 No.2022 Antilogarithm
ユーザー siganaisiganai
提出日時 2022-07-29 21:39:17
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 87,132 KB
実行使用メモリ 78,860 KB
最終ジャッジ日時 2023-09-26 20:04:27
合計ジャッジ時間 11,683 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
78,644 KB
testcase_01 AC 143 ms
78,676 KB
testcase_02 AC 146 ms
78,652 KB
testcase_03 AC 143 ms
78,680 KB
testcase_04 AC 142 ms
78,608 KB
testcase_05 AC 141 ms
78,648 KB
testcase_06 AC 141 ms
78,672 KB
testcase_07 AC 143 ms
78,644 KB
testcase_08 AC 147 ms
78,544 KB
testcase_09 AC 144 ms
78,680 KB
testcase_10 AC 143 ms
78,764 KB
testcase_11 AC 142 ms
78,548 KB
testcase_12 AC 142 ms
78,796 KB
testcase_13 AC 143 ms
78,732 KB
testcase_14 AC 141 ms
78,520 KB
testcase_15 AC 140 ms
78,776 KB
testcase_16 AC 143 ms
78,508 KB
testcase_17 AC 139 ms
78,540 KB
testcase_18 AC 140 ms
78,772 KB
testcase_19 AC 140 ms
78,504 KB
testcase_20 AC 144 ms
78,668 KB
testcase_21 AC 141 ms
78,680 KB
testcase_22 AC 141 ms
78,740 KB
testcase_23 AC 140 ms
78,724 KB
testcase_24 AC 141 ms
78,692 KB
testcase_25 AC 141 ms
78,588 KB
testcase_26 AC 142 ms
78,820 KB
testcase_27 AC 146 ms
78,744 KB
testcase_28 AC 143 ms
78,724 KB
testcase_29 AC 140 ms
78,696 KB
testcase_30 AC 144 ms
78,656 KB
testcase_31 AC 141 ms
78,688 KB
testcase_32 AC 141 ms
78,592 KB
testcase_33 AC 141 ms
78,844 KB
testcase_34 AC 142 ms
78,596 KB
testcase_35 AC 139 ms
78,724 KB
testcase_36 AC 139 ms
78,676 KB
testcase_37 AC 139 ms
78,856 KB
testcase_38 AC 142 ms
78,552 KB
testcase_39 AC 141 ms
78,724 KB
testcase_40 AC 138 ms
78,516 KB
testcase_41 AC 139 ms
78,820 KB
testcase_42 AC 140 ms
78,672 KB
testcase_43 AC 137 ms
78,696 KB
testcase_44 AC 137 ms
78,684 KB
testcase_45 AC 140 ms
78,732 KB
testcase_46 AC 138 ms
78,672 KB
testcase_47 AC 141 ms
78,760 KB
testcase_48 AC 139 ms
78,816 KB
testcase_49 AC 139 ms
78,540 KB
testcase_50 AC 140 ms
78,772 KB
testcase_51 AC 140 ms
78,724 KB
testcase_52 AC 141 ms
78,668 KB
testcase_53 AC 140 ms
78,652 KB
testcase_54 AC 140 ms
78,496 KB
testcase_55 AC 146 ms
78,860 KB
testcase_56 AC 142 ms
78,672 KB
testcase_57 AC 139 ms
78,816 KB
testcase_58 AC 137 ms
78,748 KB
testcase_59 AC 138 ms
78,596 KB
testcase_60 AC 138 ms
78,776 KB
testcase_61 AC 139 ms
78,508 KB
testcase_62 AC 140 ms
78,688 KB
testcase_63 AC 138 ms
78,772 KB
testcase_64 AC 138 ms
78,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline

a,b = map(int,input().split())
if a * a < b * b:
    print('Yes')
else:
    print('No')
0