結果

問題 No.358 も~っと!門松列
ユーザー nanophoto12nanophoto12
提出日時 2016-04-17 23:12:59
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 849 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 80,988 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-04 10:52:43
合計ジャッジ時間 1,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <set>
#include <queue>
#include <string>
#include <iomanip>
using namespace std;

#define ll long long int
#define tiii tuple<int,int,int>
#define pii pair<int,int>

int main()
{
    int a,b,c;
    cin >> a >>b>>c;
    if(b > a && b > c && a != c)
    {
        cout << "INF" << endl;
        return 0;
    }
    if(b < a && b < c && a != c)
    {
        cout << "INF" << endl;
        return 0;
    }
    int sum = 0;
    for(int i = 1;i < 1002;i++)
    {
        int ma = a % i;
        int mb = b % i;
        int mc = c % i;
        if(mb > ma && mb > mc && ma != mc)
        {
            sum++;
        }
        else if(mb < ma && mb < mc && ma != mc)
        {
            sum++;
        }
    }
    cout << sum << endl;
    return 0;
}
0