結果

問題 No.1352 Three Coins
ユーザー ks2mks2m
提出日時 2021-01-17 14:57:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,646 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 78,292 KB
実行使用メモリ 54,788 KB
最終ジャッジ日時 2024-06-02 12:09:06
合計ジャッジ時間 6,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
54,208 KB
testcase_01 AC 104 ms
53,444 KB
testcase_02 AC 111 ms
53,784 KB
testcase_03 AC 113 ms
54,312 KB
testcase_04 AC 102 ms
53,932 KB
testcase_05 AC 116 ms
53,816 KB
testcase_06 AC 138 ms
54,788 KB
testcase_07 AC 104 ms
54,100 KB
testcase_08 AC 153 ms
54,296 KB
testcase_09 AC 126 ms
53,892 KB
testcase_10 AC 136 ms
54,256 KB
testcase_11 AC 114 ms
52,892 KB
testcase_12 AC 102 ms
53,976 KB
testcase_13 AC 105 ms
53,288 KB
testcase_14 AC 132 ms
54,492 KB
testcase_15 AC 117 ms
53,924 KB
testcase_16 AC 92 ms
52,756 KB
testcase_17 AC 105 ms
53,932 KB
testcase_18 AC 137 ms
54,376 KB
testcase_19 AC 107 ms
52,584 KB
testcase_20 AC 112 ms
54,028 KB
testcase_21 AC 158 ms
54,588 KB
testcase_22 AC 95 ms
52,748 KB
testcase_23 AC 110 ms
54,232 KB
testcase_24 AC 104 ms
53,768 KB
testcase_25 AC 102 ms
53,864 KB
testcase_26 AC 93 ms
52,708 KB
testcase_27 AC 94 ms
53,096 KB
testcase_28 AC 130 ms
54,052 KB
testcase_29 AC 94 ms
52,868 KB
testcase_30 AC 160 ms
54,416 KB
testcase_31 AC 102 ms
53,016 KB
testcase_32 AC 161 ms
54,652 KB
testcase_33 AC 95 ms
52,712 KB
testcase_34 AC 108 ms
54,288 KB
testcase_35 AC 93 ms
53,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int[] a = new int[3];
		for (int i = 0; i < 3; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		int g = 0;
		for (int i = 0; i < 3; i++) {
			g = gcd(g, a[i]);
		}
		if (g > 1) {
			System.out.println("INF");
			return;
		}

		Arrays.sort(a);
		int[] c = new int[a[0]];
		Arrays.fill(c, Integer.MAX_VALUE);
		c[0] = 0;
		for (int i = 1; i < 3; i++) {
			for (int j = 1; j < c.length; j++) {
				int x = 0;
				int end = a[0] * a[i] / gcd(a[0], a[i]);
				while (x < end) {
					x += a[i];
					if (x % a[0] == j) {
						c[j] = Math.min(c[j], x / a[0]);
						break;
					}
				}
			}
		}

		int[] c2 = new int[a[1]];
		Arrays.fill(c2, Integer.MAX_VALUE);
		c2[0] = 0;
		for (int j = 1; j < c2.length; j++) {
			int x = 0;
			int end = a[1] * a[2] / gcd(a[1], a[2]);
			while (x < end) {
				x += a[2];
				if (x % a[1] == j) {
					c2[j] = Math.min(c2[j], x / a[1]);
					break;
				}
			}
		}

		for (int j = 1; j < c.length; j++) {
			int x = j;
			int e = 1;
			while (e < c[j]) {
				int j2 = x % a[1];
				int d = x / a[1];
				if (c2[j2] <= d) {
					c[j] = Math.min(c[j], x / a[0]);
					break;
				}
				x += a[0];
			}
		}

		int ans = 0;
		for (int i = 1; i < a[0]; i++) {
//			if (c[i] == Integer.MAX_VALUE) {
//				System.out.println("INF");
//				return;
//			}
			ans += c[i];
		}
		System.out.println(ans);
	}

	static int gcd(int a, int b) {
		return b == 0 ? a : gcd(b, a % b);
	}

//	static int lcm(int a, int b) {
//		return a * b / gcd(a, b);
//	}
}
0