結果

問題 No.281 門松と魔法(1)
ユーザー 184
提出日時 2015-09-18 23:19:06
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 34,560 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-06 19:25:24
合計ジャッジ時間 1,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12 WA * 45
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         int d;int h[3];scanf("%d",&d);for(int i=0;i<3;i++)scanf("%d",&h[i]);
      |                        ~~~~~^~~~~~~~~
main.cpp:9:64: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         int d;int h[3];scanf("%d",&d);for(int i=0;i<3;i++)scanf("%d",&h[i]);
      |                                                           ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

//namaega184

int main(){
	int d;int h[3];scanf("%d",&d);for(int i=0;i<3;i++)scanf("%d",&h[i]);
	bool f[3];
	f[0]=h[0]!=h[1],f[1]=h[1]!=h[2],f[2]=h[2]!=h[0];
	if(f[0]&&f[1]&&f[2])puts("0");
	else if(!f[0]&&!f[1]&&!f[0]){
		if(h[0]>=d*2)puts("2");
		else puts("-1");
		return 0;
	}
	else{
		for(int i=0;i<3;i++){ 
			if(!f[i]){
				if(h[i]>=d){
					if(h[i]-d==h[(i+2)%3]){
						if(h[i]>=d*2)puts("2");
						else puts("-1");
						return 0;
					}
					else puts("1");
					return 0;
				}
			}
		}
	}
	//printf("%d\n",-1000);
	return 0;
}
0