結果

問題 No.1352 Three Coins
ユーザー hiikunZhiikunZ
提出日時 2022-05-15 16:59:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 204,020 KB
実行使用メモリ 65,824 KB
最終ジャッジ日時 2024-09-13 02:01:54
合計ジャッジ時間 5,698 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 9 ms
7,292 KB
testcase_03 AC 32 ms
13,108 KB
testcase_04 AC 42 ms
7,040 KB
testcase_05 AC 58 ms
27,252 KB
testcase_06 AC 191 ms
36,212 KB
testcase_07 AC 5 ms
8,988 KB
testcase_08 AC 139 ms
37,780 KB
testcase_09 AC 6 ms
7,368 KB
testcase_10 AC 17 ms
18,748 KB
testcase_11 AC 5 ms
7,752 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 30 ms
13,432 KB
testcase_14 AC 167 ms
33,724 KB
testcase_15 AC 104 ms
16,992 KB
testcase_16 AC 240 ms
32,644 KB
testcase_17 AC 5 ms
6,944 KB
testcase_18 AC 11 ms
13,996 KB
testcase_19 AC 37 ms
22,644 KB
testcase_20 AC 74 ms
24,712 KB
testcase_21 AC 240 ms
50,604 KB
testcase_22 AC 6 ms
6,940 KB
testcase_23 AC 5 ms
6,944 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 42 ms
17,336 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 161 ms
46,888 KB
testcase_29 AC 48 ms
6,940 KB
testcase_30 AC 140 ms
65,724 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 128 ms
65,708 KB
testcase_33 AC 93 ms
65,824 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#include<atcoder/all>
//using namespace atcoder;
using ll = long long int;
using ull = unsigned long long int;
using ld = long double;
constexpr ll MAX = 2000000000000000000;
constexpr ld PI = 3.14159265358979;
constexpr ll MOD = 0;//2024948111;
ld dotorad(ld K){return PI * K / 180.0;}
ld radtodo(ld K){return K * 180.0 / PI;}
mt19937 mt;
void randinit(){srand((unsigned)time(NULL));mt = mt19937(rand());}
int main(){
    ll A,B,C;
    cin >> A >> B >> C;
    vector<ll> P((A + B + 1) * C + 1,0),Q(C,0);
    for(ll i = 0;i <= C;i++){
        for(ll j = 0;j <= C;j++){
            P[A * i + B * j] = 1;
            Q[(A * i + B * j) % C] = 1;
        }
    }
    for(ll i = 0;i < C;i++){
        if(Q[i] == 0){
            cout << "INF" << endl;
            return 0;
        }
    }
    ll ans = 0;
    for(ll i = 0;i <= (A + B) * C;i++){
        if(P[i]){
            P[i + C] = 1;
        }
        else ans++;
    }
    cout << ans << endl;
}
0