結果
| 問題 |
No.780 オフ会
|
| コンテスト | |
| ユーザー |
C. S.
|
| 提出日時 | 2019-03-14 16:48:47 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 171 bytes |
| コンパイル時間 | 159 ms |
| コンパイル使用メモリ | 27,136 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-26 20:58:02 |
| 合計ジャッジ時間 | 1,260 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 23 |
ソースコード
#include <stdio.h>
int main()
{
int A, B;
scanf("%d %d", &A, &B);
if(A<B){
printf("YES\n");
} else {
printf("NO\n");
}
return 0;
}
C. S.