結果
| 問題 | No.1527 Input Constant is Good |
| コンテスト | |
| ユーザー |
bal4u
|
| 提出日時 | 2021-06-05 13:54:22 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 164 bytes |
| 記録 | |
| コンパイル時間 | 145 ms |
| コンパイル使用メモリ | 36,292 KB |
| 最終ジャッジ日時 | 2026-02-22 07:19:09 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
ソースコード
// yuki 1527 Input Constant is Good
// 2021.6.5 bal4u
#include <stdio.h>
int main()
{
int A, B;
scanf("%d%d", &A, &B);
puts(A <= B? "Yes": "No");
return 0;
}
bal4u