結果
| 問題 | No.780 オフ会 |
| コンテスト | |
| ユーザー |
Fre_de_rica
|
| 提出日時 | 2019-01-21 21:41:52 |
| 言語 | C90 (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 224 bytes |
| 記録 | |
| コンパイル時間 | 161 ms |
| コンパイル使用メモリ | 34,004 KB |
| 最終ジャッジ日時 | 2026-02-24 01:01:52 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 23 |
ソースコード
#include <stdio.h>
main(int argc, char *argv[]) {
int A = atoi(argv[1]);
int B = atoi(argv[2]);
int Yasuo = 1;
if (A + Yasuo > B) {
printf("NO\n");
}
else {
printf("YES\n");
}
printf("%d\n", A + Yasuo - B);
}
Fre_de_rica