結果
問題 |
No.531 エヌスクミ島の平和協定
|
ユーザー |
![]() |
提出日時 | 2017-06-24 03:46:16 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 220 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 22,528 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-05 12:07:38 |
合計ジャッジ時間 | 1,201 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 33 WA * 4 |
コンパイルメッセージ
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); | ~~~~~^~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(){ int n,m; scanf("%d %d",&n,&m); int n2=n/2+n%2; if(n2>m){ printf("-1\n"); }else if(n%2==1){ printf("-1\n"); }else{ if(n<=m){ printf("1\n"); }else{ printf("2\n"); } } }