結果
| 問題 | No.780 オフ会 |
| コンテスト | |
| ユーザー |
Fre_de_rica
|
| 提出日時 | 2019-01-21 21:41:52 |
| 言語 | C90 (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 224 bytes |
| 記録 | |
| コンパイル時間 | 48 ms |
| コンパイル使用メモリ | 34,048 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-25 02:05:56 |
| 合計ジャッジ時間 | 4,542 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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