結果

問題 No.358 も~っと!門松列
ユーザー troro_kelptroro_kelp
提出日時 2018-08-28 17:20:14
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 1,000 ms
コード長 1,333 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 97,392 KB
実行使用メモリ 8,360 KB
最終ジャッジ日時 2023-09-23 02:46:46
合計ジャッジ時間 2,160 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,072 KB
testcase_01 AC 4 ms
8,128 KB
testcase_02 AC 4 ms
8,124 KB
testcase_03 AC 4 ms
8,272 KB
testcase_04 AC 4 ms
8,232 KB
testcase_05 AC 4 ms
8,148 KB
testcase_06 AC 4 ms
8,092 KB
testcase_07 AC 4 ms
8,084 KB
testcase_08 AC 4 ms
8,080 KB
testcase_09 AC 4 ms
8,104 KB
testcase_10 AC 5 ms
8,208 KB
testcase_11 AC 4 ms
8,360 KB
testcase_12 AC 4 ms
8,100 KB
testcase_13 AC 4 ms
8,124 KB
testcase_14 AC 4 ms
8,072 KB
testcase_15 AC 5 ms
8,072 KB
testcase_16 AC 4 ms
8,124 KB
testcase_17 AC 4 ms
8,072 KB
testcase_18 AC 4 ms
8,100 KB
testcase_19 AC 4 ms
8,132 KB
testcase_20 AC 4 ms
8,128 KB
testcase_21 AC 5 ms
8,128 KB
testcase_22 AC 5 ms
8,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <map>
#include <cmath>
#include <queue>
#include <numeric>
#include <climits>
#include <iterator>
#include <iomanip>
#include <stack>
#include <set>
#include <bitset>
#include <functional>
using namespace std;
const constexpr int INF = 1e9;
//typedef std::pair<std::string,double> P;


#define FOR(i, a, n) for (ll i = (ll)a; i<(ll)n; ++i)
#define REP(i, n) FOR(i, 0, n)

typedef long long ll;
typedef vector<int> VI;
const constexpr ll MOD = 1e9+7;
vector<pair<int, int> > vp;
 
struct Less {
    bool operator()(const pair<int, int>& x, const pair<int, int>& y) const {
        return x.first > y.first;
    }
};

ll GCD(ll a, ll b){
    if(b==0) return a;
    return GCD(b, a%b);
}


//グラフの隣接リスト
VI g[200010];
//頂点の入次数を管理
int h[100010];
string s;
int a[100010];
int b[100010]={INF};
int main(void) {
    int a, b, c; cin >> a >> b >> c;
    if(a==b||b==c||a==c){
        cout << 0 << endl;
        return 0;
    }
    if((b>a&&b>c)||(b<a&&b<c)){
        cout << "INF" << endl;
        return 0;
    }
    
    int ans = 0;
    for(int i=1; i<10000; ++i){
        int A = a%i, B=b%i, C=c%i;
        if(A==B||B==C||A==C) continue;
        if((B>A&&B>C)||(B<A&&B<C)) ans++;
    }
    cout << ans << endl;
    
}
0