結果

問題 No.1352 Three Coins
ユーザー DaYuanChiDaYuanChi
提出日時 2021-01-17 21:27:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 594 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 201,048 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-11-30 02:51:25
合計ジャッジ時間 25,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
14,336 KB
testcase_02 AC 9 ms
20,352 KB
testcase_03 AC 4 ms
10,496 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 39 ms
10,624 KB
testcase_06 TLE -
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1,853 ms
12,416 KB
testcase_09 AC 434 ms
6,016 KB
testcase_10 AC 920 ms
8,704 KB
testcase_11 TLE -
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1,032 ms
6,912 KB
testcase_14 AC 619 ms
10,112 KB
testcase_15 AC 1,487 ms
7,680 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 17 ms
5,248 KB
testcase_18 AC 535 ms
7,296 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 TLE -
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 817 ms
11,008 KB
testcase_29 AC 49 ms
5,248 KB
testcase_30 TLE -
testcase_31 AC 11 ms
5,248 KB
testcase_32 TLE -
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 2 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int cnt[4000005];

int main(){
  int a, b, c; cin >> a >> b >> c;
  if(gcd(a,gcd(b,c))>1){
    cout << "INF" << endl;
    return 0;
  }
  int n = 1;
  if(gcd(a,b)==1){
    n = a*b;
  }else if(gcd(b,c)==1){
    n = b*c;
  }else{
    n = c*a;
  }
  for(int i = 0; i <= n/a; i++){
    for(int j = 0; j <= (n-i*a)/b; j++){
      for(int k = 0; k <= (n-i*a-j*b)/c; k++){
        cnt[i*a+j*b+k*c]++;
      }
    }
  }
  int ans = 0;
  for(int i = 1; i < n; i++){
    if(cnt[i]==0) ans++;
  }
  cout << ans << endl;
  return 0;
}
  
0