結果

問題 No.1527 Input Constant is Good
ユーザー ゆーてぃー
提出日時 2025-05-20 22:51:39
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 25,676 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-05-20 22:51:40
合計ジャッジ時間 718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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