結果

問題 No.1527 Input Constant is Good
ユーザー subsn
提出日時 2023-06-21 11:30:15
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 27,136 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 21:07:44
合計ジャッジ時間 708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(){
    int a, b;
    scanf("%d%d",&a,&b);
    a<=b?puts("Yes"):puts("No");
}
0