結果
| 問題 | No.281 門松と魔法(1) |
| コンテスト | |
| ユーザー |
184
|
| 提出日時 | 2015-09-18 23:19:06 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 620 bytes |
| 記録 | |
| コンパイル時間 | 378 ms |
| コンパイル使用メモリ | 51,584 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-07 00:23:57 |
| 合計ジャッジ時間 | 1,902 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 WA * 45 |
ソースコード
#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;
}
184