結果

問題 No.1527 Input Constant is Good
ユーザー ゆーてぃー
提出日時 2025-05-20 22:51:21
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 130 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 25,652 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-05-20 22:51:22
合計ジャッジ時間 1,271 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5 WA * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:4:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |         scanf("%d %d",&A,&B);
      |         ^~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int main(){
	int A,B;
	scanf("%d %d",&A,&B);
	if(A<B){
		printf("Yes");
	}else{
		printf("No");
		return 0;
	}
}
0