結果

問題 No.1352 Three Coins
ユーザー Example0911Example0911
提出日時 2021-01-17 14:04:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 1,660 ms
コンパイル使用メモリ 203,540 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-02 12:08:10
合計ジャッジ時間 6,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
6,812 KB
testcase_01 AC 95 ms
6,940 KB
testcase_02 AC 117 ms
6,944 KB
testcase_03 AC 129 ms
6,944 KB
testcase_04 AC 131 ms
6,940 KB
testcase_05 AC 136 ms
6,940 KB
testcase_06 AC 137 ms
6,940 KB
testcase_07 AC 62 ms
6,944 KB
testcase_08 AC 121 ms
6,944 KB
testcase_09 AC 99 ms
6,944 KB
testcase_10 AC 125 ms
6,940 KB
testcase_11 AC 105 ms
6,944 KB
testcase_12 AC 58 ms
6,940 KB
testcase_13 AC 135 ms
6,944 KB
testcase_14 AC 134 ms
6,944 KB
testcase_15 AC 143 ms
6,944 KB
testcase_16 AC 73 ms
6,940 KB
testcase_17 AC 96 ms
6,944 KB
testcase_18 AC 117 ms
6,944 KB
testcase_19 AC 79 ms
6,940 KB
testcase_20 AC 85 ms
6,940 KB
testcase_21 AC 122 ms
6,940 KB
testcase_22 AC 61 ms
6,944 KB
testcase_23 AC 53 ms
6,940 KB
testcase_24 AC 95 ms
6,944 KB
testcase_25 AC 62 ms
6,944 KB
testcase_26 AC 56 ms
6,940 KB
testcase_27 AC 94 ms
6,940 KB
testcase_28 AC 124 ms
6,940 KB
testcase_29 AC 112 ms
6,940 KB
testcase_30 AC 98 ms
6,944 KB
testcase_31 AC 95 ms
6,940 KB
testcase_32 AC 95 ms
6,944 KB
testcase_33 AC 48 ms
6,940 KB
testcase_34 AC 95 ms
6,940 KB
testcase_35 AC 95 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = 998244353;
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	ll A, B, C; cin >> A >> B >> C;
	vector<bool>ok(4010 * 4010 + 100);
	for (int i = 0; i <= 4010; i++) {
		for (int j = 0; j <= 4010; j++) {
			ll now = A * i + B * j;
			for (int k = now; k <= 4010 * 4010; k += C) {
				if (ok[k])break;
				ok[k] = true;
			}
		}
	}
	int cnt = 0;
	for (int i = 1; i <= 4010*4010; i++) {
		if (!ok[i]) {
			cnt++;
			if (i > 2000 * 2000) {
				cout << "INF" << endl; return 0;
			}
			//cout << i << endl;
		}
	}
	cout << cnt << endl;
	return 0;
}
0