結果

問題 No.2508 Discriminant
ユーザー komkompi
提出日時 2023-10-27 21:18:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 72,200 KB
最終ジャッジ日時 2024-09-25 13:17:13
合計ジャッジ時間 2,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
sys.set_int_max_str_digits(0)

a,p,q=map(int,input().split())

if p==q:
    print("No")
else:
    print("Yes")
0