結果

問題 No.2508 Discriminant
ユーザー miya145592miya145592
提出日時 2023-10-20 22:39:29
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 150 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 68,416 KB
最終ジャッジ日時 2024-09-20 20:29:56
合計ジャッジ時間 2,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,160 KB
testcase_01 AC 37 ms
52,400 KB
testcase_02 AC 36 ms
53,268 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 42 ms
52,432 KB
testcase_06 AC 43 ms
53,680 KB
testcase_07 AC 42 ms
52,144 KB
testcase_08 AC 45 ms
53,352 KB
testcase_09 AC 42 ms
52,884 KB
testcase_10 AC 42 ms
52,284 KB
testcase_11 AC 42 ms
53,152 KB
testcase_12 AC 43 ms
52,484 KB
testcase_13 AC 42 ms
53,376 KB
testcase_14 AC 43 ms
52,064 KB
testcase_15 AC 42 ms
52,292 KB
testcase_16 AC 43 ms
52,372 KB
testcase_17 AC 44 ms
53,280 KB
testcase_18 AC 44 ms
52,336 KB
testcase_19 AC 43 ms
52,692 KB
testcase_20 AC 42 ms
51,876 KB
testcase_21 AC 38 ms
51,960 KB
testcase_22 AC 37 ms
51,904 KB
testcase_23 AC 37 ms
52,192 KB
testcase_24 AC 37 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
a, p, q = map(int, input().split())
b2 = (p+q)*(p+q)
ac4 = 4*p*q
if p==q:
    print("No")
else:
    print("Yes")
0