結果

問題 No.531 エヌスクミ島の平和協定
ユーザー horiesiniti
提出日時 2017-06-24 03:41:45
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 22,400 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 12:07:30
合計ジャッジ時間 1,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 35 WA * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%d %d",&n,&m);
      |         ~~~~~^~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(){
	int n,m;
	scanf("%d %d",&n,&m);
	int n2=n/2+n%2;
	if((n2>m)||(m==2&&n==3)){
		printf("-1\n");
	}else{
		if(n<=m){
			printf("1\n");
		}else{
			printf("2\n");
		}
	}
}
0