結果
問題 |
No.531 エヌスクミ島の平和協定
|
ユーザー |
![]() |
提出日時 | 2017-06-24 03:49:30 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 225 bytes |
コンパイル時間 | 273 ms |
コンパイル使用メモリ | 22,528 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 16:23:44 |
合計ジャッジ時間 | 1,272 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 37 |
コンパイルメッセージ
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&&n>m){ printf("-1\n"); }else{ if(n<=m){ printf("1\n"); }else{ printf("2\n"); } } }