結果
問題 | No.780 オフ会 |
ユーザー |
![]() |
提出日時 | 2019-01-11 22:20:32 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 221 bytes |
コンパイル時間 | 1,471 ms |
コンパイル使用メモリ | 158,016 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-30 08:32:12 |
合計ジャッジ時間 | 2,301 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:7:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%d%d",&a,&b); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>using namespace std;#define REP(i,n) for(int i=0;i<(int)(n);i++)int main(){int a,b;scanf("%d%d",&a,&b);puts(a+1<=b ? "YES" : "NO");printf("%d\n",abs(a+1-b));return 0;}