結果

問題 No.780 オフ会
ユーザー bellangeldindon
提出日時 2019-04-26 13:31:11
言語 Python2
(2.7.18)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-11-24 05:58:20
合計ジャッジ時間 968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, raw_input().split())
d = B - A
if d > 0: print "YES"
else: print "NO"
print abs(d-1)
0